Hi,
How do i configure my watchdog timer to more than a minute??
And do i feed my watchdog instead of using buttons like used in the example !!
Hi,
How do i configure my watchdog timer to more than a minute??
And do i feed my watchdog instead of using buttons like used in the example !!
I managed to increase the watchdog timeout to 1 minute and 15 seconds in the WDT Example by setting WDT_CONFIG_RELOAD_VALUE to 75000 in the sdk_config.h file.
Regarding reloading the watchdog without using the button, putting the watchdog in the main loop might be a smart choice, since the timer might still run in the background, even though the program is stuck. This case goes more into the details about it.
Best regards,
Simon
I managed to increase the watchdog timeout to 1 minute and 15 seconds in the WDT Example by setting WDT_CONFIG_RELOAD_VALUE to 75000 in the sdk_config.h file.
Regarding reloading the watchdog without using the button, putting the watchdog in the main loop might be a smart choice, since the timer might still run in the background, even though the program is stuck. This case goes more into the details about it.
Best regards,
Simon
Thanks Simon,
my application works perfectly fine.