The "5.3.6.8 Reset behavior" table in nRF52840 Product Specification v1.1 mentions that WDT reset does reset the WDT itself.
I'm trying to reconfigure the WDT after a WDT reset but it seems the reload_value is not updated.
The "5.3.6.8 Reset behavior" table in nRF52840 Product Specification v1.1 mentions that WDT reset does reset the WDT itself.
I'm trying to reconfigure the WDT after a WDT reset but it seems the reload_value is not updated.
Hi
What SDK version are you using? There was a bug in SDKs before SDK v.16.0.0 where reload values above 131 seconds will not work due to a calculation overflowing internally in the driver during multiplication.
The fix is to replace this line with the following three:
- nrf_wdt_reload_value_set((p_config->reload_value * 32768) / 1000); + uint64_t ticks = (p_config->reload_value * 32768ULL) / 1000; + NRFX_ASSERT(ticks <= UINT32_MAX); + nrf_wdt_reload_value_set((uint32_t) ticks);
Best regards,
Simon
Hi
What SDK version are you using? There was a bug in SDKs before SDK v.16.0.0 where reload values above 131 seconds will not work due to a calculation overflowing internally in the driver during multiplication.
The fix is to replace this line with the following three:
- nrf_wdt_reload_value_set((p_config->reload_value * 32768) / 1000); + uint64_t ticks = (p_config->reload_value * 32768ULL) / 1000; + NRFX_ASSERT(ticks <= UINT32_MAX); + nrf_wdt_reload_value_set((uint32_t) ticks);
Best regards,
Simon