I set up my watchdog per the code below and the watchdog shuts down ok when I don't service it but it doesn't reset the processor like I expected, it just shuts down. Any idea what I'm doing wrong?
Thanks in advance,
Rick
// Enable watchdog ServiceDog(); EALLOW; SysCtrlRegs.SCSR = 0x0000; SysCtrlRegs.WDCNTR = 0xFF; SysCtrlRegs.WDCR = 0x002F; EDIS; ServiceDog();