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.