This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2652R7: Assert_isTrue doesn't cause an assertion error

Part Number: CC2652R7
Other Parts Discussed in Thread: SYSCONFIG, SYSBIOS

SDK: 06.30.01.03 SDK

SysConfig Runtime Settings

const Assert = scripting.addModule("/ti/sysbios/runtime/Assert");
const Error = scripting.addModule("/ti/sysbios/runtime/Error");
const SysCallback = scripting.addModule("/ti/sysbios/runtime/SysCallback");
const System = scripting.addModule("/ti/sysbios/runtime/System");
const Timestamp = scripting.addModule("/ti/sysbios/runtime/Timestamp");

Assert.addFileLine = false;

Error.addFileLine = false;

If I try to force an assertion by calling `Assert_isTrue(False, "Reason")`, nothing happens. The processor continues on without error. Shouldn't this cause the processor to enter an error state?