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 }
系统并没有重启,不知道是怎么回事,
请大神不吝赐教