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.

WatchDog reset

Dear Friend,

I'm working with Piccolo Experimental Kit. I've imported code from control-suit for watchdog timer.

The code uses Interrupt for watchdog overflow. 

I need to reset MCU on watchdog overflow event. so I've done SysCtrlRegs.SCSR = 0x0000; 

after doing so, the code is working nicely if I service the dog (by ServiceDog(); from for(;;) loop) before overflow, but as I comment the function ServiceDog(); the MCU suspends all the activity and my emulator faces Emulation Error and I've to reset the CCS. 

FYI, the code is working properly in INTERRUPT Mode with comment on ServiceDog(); function.