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

If I enable watchdog in main applicatio it cause bootloader to reboot

When I enable watchdog in main application by:

nrf_drv_wdt_config_t config = NRF_DRV_WDT_DEAFULT_CONFIG;
err_code = nrf_drv_wdt_init(&config, wdt_event_handler);
APP_ERROR_CHECK(err_code);
err_code = nrf_drv_wdt_channel_alloc(&m_channel_id);
APP_ERROR_CHECK(err_code);
nrf_drv_wdt_enable();

it cause bootloader to reboot, so I can't enter to dfu mode.

How to make it possible - to enter dfu while in maonn app WDT is enabled?

Related