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.

cc1310watchdog 没有喂狗为什么没有复位?

Other Parts Discussed in Thread: CC1310

watchdog设置

Watchdog_init();
Watchdog_Params Watchdogparams;
Watchdog_Params_init(&Watchdogparams);
Watchdogparams.resetMode=Watchdog_RESET_ON ;
Watchdogparams.debugStallMode=Watchdog_DEBUG_STALL_ON;
watchdogHandle = Watchdog_open(0, &Watchdogparams);
Watchdog_setReload(watchdogHandle, 3000000);

我在定时器里面Watchdog_clear(watchdogHandle)喂狗了,程序正常运行;

但是我不喂狗的时候,程序死掉了