Trait kernel::hil::watchdog::Watchdog [] [src]

pub trait Watchdog {
    fn start(&self, period: usize);
fn stop(&self);
fn tickle(&self); }

Required Methods

Enable the watchdog timer. Period is the time in milliseconds the watchdog will timeout if not serviced.

Disable the watchdog timer.

Service the watchdog to let the hardware know the application is still executing.

Implementors