Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Hi,
We have customize board where we are using watchdog reset in CPU1 as "Watchdog can generate an interrupt signal; reset signal is disabled".
But the device is not getting rebooted after watchdog reset.
We are able to see the 51usec pulse on XRSn pin but device goes in hang state instead of loading the application.
__interrupt void
INT_WAKE_ISR(void)
{
EALLOW;
SysCtl_setWatchdogMode(SYSCTL_WD_MODE_RESET);
EDIS;
// Step 6: Infinite loop - no interrupts can service watchdog now
while(1);
}


