Complete the code to set the watchdog timeout to 2 seconds.
WDT->CONFIG = [1];The constant WDT_CONFIG_TIMEOUT_2S sets the watchdog timer to 2 seconds timeout.
Complete the code to enable the watchdog timer after configuring the timeout.
WDT->CTRL = [1];The WDT_CTRL_ENABLE constant enables the watchdog timer to start counting down.
Fix the error in the code to correctly reload the watchdog timer counter.
WDT->RELOAD = [1];The watchdog reload register must be set to WDT_RELOAD_VALUE to reset the timer counter properly.
Fill both blanks to configure the watchdog timeout and enable it.
WDT->CONFIG = [1]; WDT->CTRL = [2];
Set the timeout to 1 second and enable the watchdog timer to start it.
Fill all three blanks to set a 4-second timeout, enable the watchdog, and reload the counter.
WDT->CONFIG = [1]; WDT->CTRL = [2]; WDT->RELOAD = [3];
Configure the watchdog for 4 seconds timeout, enable it, and reload the counter to start fresh.