Watchdog automatically fed after wakeup?

When configuring the watchdog to pause in sleep mode, is it automatically fed after a wakeup from power_manage()?

Is the feed required in this loop, or can I leave it out and rely on the WDT to be fed when app_sched_execute starts?

for (;;) {
  power_manage();
  nrf_drv_wdt_feed();
  app_sched_execute();
}
Parents Reply Children
Related