pub trait SysMonoTimerExt: Sized {
    fn monotonic<const FREQ: u32>(self, clocks: &Clocks) -> Systick<FREQ>;

    fn monotonic_us(self, clocks: &Clocks) -> Systick<1_000_000> { ... }
}

Required Methods

Provided Methods

Implementors