Hi,
I modified the WDOG_ISR of the SDK example to simply toggle the RED LED.
/* WatchDog IRQ handler */
void WDOG_ISR(void)
{
WDOG->CS |= (1 << 14); // Clear WDOG FLG
PTD->PTOR |= 0x8000; // Toggle RED LED, PortD15
PTD->PTOR |= 0x8000;
PTD->PTOR |= 0x8000;
PTD->PTOR |= 0x8000;
PTD->PTOR |= 0x8000;
PTD->PTOR |= 0x8000;
}
I can see it enters the interrupt on the PortD15 pin.

If I place a breakpoint as shown below, I can’t see it stops at the breakpoint, because the reset comes too fast (in 128 bus clock cycles).

Nevertheless, checking the PortD15 pin, I can see it really stops at the breakpoint.

Regards,
Daniel