pub trait _embedded_hal_watchdog_WatchdogDisable {
    // Required method
    fn disable(&mut self);
}
Expand description

Disables a running watchdog timer so the processor won’t be reset.

Required Methods§

fn disable(&mut self)

Disables the watchdog

Implementations on Foreign Types§

§

impl WatchdogDisable for Rwdt

§

fn disable(&mut self)

§

impl WatchdogDisable for Swd

§

fn disable(&mut self)

§

impl<TG> WatchdogDisable for Wdt<TG>

§

fn disable(&mut self)

Implementors§