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.

LAUNCHXL-CC1312R1: cc1312

Part Number: LAUNCHXL-CC1312R1

TI大神!你好

      在调试cc1312r1模块时,系统重启接口 ”SysCtrlSystemReset()“ 无效。
情况如下,编译前设置了预定义符号:“RESET_ASSERT”

但是当程序报错进入:

void Main_assertHandler(uint8_t assertReason)
{
    Main_assertReason = assertReason;

#if defined(RESET_ASSERT)
    Csf_assertInd(assertReason);

    /* Pull the plug and start over */
    SysCtrlSystemReset();
#else
    SysCtrlSystemReset();
    Hwi_disable();
    while(1)
    {
        /* Put you code here to do something if in assert */
    }
#endif
}

系统并没有重启,不知道是怎么回事,

请大神不吝赐教