[][src]Trait esp32_hal::prelude::_embedded_hal_watchdog_Watchdog

pub trait _embedded_hal_watchdog_Watchdog {
    fn feed(&mut self);
}

Feeds an existing watchdog to ensure the processor isn't reset. Sometimes commonly referred to as "kicking" or "refreshing".

Required methods

fn feed(&mut self)

Triggers the watchdog. This must be done once the watchdog is started to prevent the processor being reset.

Loading content...

Implementors

impl Watchdog for esp32_hal::clock_control::watchdog::Watchdog[src]

Feed (=reset) the watchdog timer

impl<TIMG: TimerGroup> Watchdog for esp32_hal::timer::watchdog::Watchdog<TIMG>[src]

Feed (=reset) the watchdog timer

Loading content...