Part Number: CC2642R
Tool/software: Code Composer Studio
Hello,
I am using the CC2642R along with the Boosterpack ULPSense in order to get the values from the accelerometer (SPI communication) with the Sensor Controller and to wake up the main CPU when a threshold is overlapped.
I started from the empty.c example from the simplelink_cc13x2_26x2_sdk_4_20_01_04 folder with the files generated by Sensor Controller Studio.
However when I start debugging I have always the same behavior, where the program stops at BIOS_Start() and does not return anything. When I investigated I found out that it is stuck here :
Void Error_policyMin(Error_Block *eb, Types_ModuleId mod, CString file,
Int line, Error_Id id, IArg arg1, IArg arg2)
{
/* REQ_TAG(SYSBIOS-852) */
if (eb == NULL || (UInt)Error_policy == (UInt)Error_TERMINATE) {
for(;;) {
}
}
else if (eb != &xdc_runtime_Error_IgnoreBlock) {
eb->id = id;
}
else {
return;
}
}
"eb" is undefined and I don't know what to do. I have seen this problem on other posts but none of the solutions have worked in my case.
Thank you,
Geoffrey