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

Watchdog reconfiguration

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.

Watchdog::Watchdog()
{
#ifndef DISABLE_WATCHDOG
    // Configure WDT.
    nrfx_wdt_config_t config;
    config.behaviour = WDT_CONFIG_BEHAVIOUR;
    config.interrupt_priority = WDT_CONFIG_IRQ_PRIORITY;
    config.reload_value = TIMEOUT_MS;

    uint32_t err_code = nrfx_wdt_init(&config, wdt_event_handler);
    APP_ERROR_CHECK(err_code);

    for (unsigned int i=0; i<MAX_CHANNELS; i++) {
        nrfx_wdt_channel_id id;
        uint32_t err_code = nrfx_wdt_channel_alloc(&id);
        APP_ERROR_CHECK(err_code);
        m_channelIds[i] = id;
        m_assignedChannel[i] = false;
    }
#endif
}

Related