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?