Hello rafael.barbosa@chassisbrakes.com,
We currently do not support the Watchdog timeout-interrupt. We can consider adding support for that in a future release.
Until then, if you really need this functionality, you can achieve this with custom code insertion.
From the interrupt vector table I understand that this sis available only for Etimer 0 Channel 0 so you need to create a custom block to implement this ETIMER0_WTIF_IRQHandler function as void function.
The SDK offers the support to enable interrupt source using the following call:
ETIMER_DRV_EnableInterruptSource(0, ETIMER_INTDMA_WDFIE_MASK, 0);
You can set and disable the watchdog using:
ETIMER_DRV_SetWatchdog(constuint16_t instance, constuint16_t channel, constuint32_t watchdog);
ETIMER_DRV_DisableWatchdog(constuint16_t instance, constuint16_t channel);
Tell me if you encounter difficulties if you start implementing this.
Hope this helps,
Marius