This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

how to change nrf 52832 WDT timeout

SDK: nRF5_SDK_11.0.0
Softdevice: s132_nrf52_2.0.0_softdevice

I set the WDT timeout in the application is 5s, when entering the BootLoader set the WDT time is 10s, how should I set? I try to set this up:
NRF_WDT-> TASKS_START = 0;
NRF_WDT-> CRV = 5 * 32768;
NRF_WDT-> RR [0] = 0x6E524635UL;
NRF_WDT-> TASKS_START = 1;
But found timeout time has not changed.

Related