We have the Watchdog on the 5340 running but when we enter the software updater we wish to dissable it.
We have the following code to disable it but we are seeing the watchdog trigger after the dissable command has been issued
wdt0.p_reg->TSEN = 0x6E524635; ///< stop enable magic number
nrf_wdt_task_trigger(wdt0.p_reg, NRF_WDT_TASK_STOP);
wdt0.p_reg->TSEN = 0;
Do you have any suggestions?