pub trait SysTimerExt: Sized {
// Required methods
fn counter_hz(self, clocks: &Clocks) -> SysCounterHz;
fn counter<const FREQ: u32>(self, clocks: &Clocks) -> SysCounter<FREQ>;
fn delay(self, clocks: &Clocks) -> SysDelay;
// Provided method
fn counter_us(self, clocks: &Clocks) -> SysCounterUs { ... }
}
Required Methods§
Sourcefn counter_hz(self, clocks: &Clocks) -> SysCounterHz
fn counter_hz(self, clocks: &Clocks) -> SysCounterHz
Creates timer which takes Hertz as Duration
Sourcefn counter<const FREQ: u32>(self, clocks: &Clocks) -> SysCounter<FREQ>
fn counter<const FREQ: u32>(self, clocks: &Clocks) -> SysCounter<FREQ>
Creates timer with custom precision (core frequency recommended is known)
Provided Methods§
Sourcefn counter_us(self, clocks: &Clocks) -> SysCounterUs
fn counter_us(self, clocks: &Clocks) -> SysCounterUs
Creates timer with precision of 1 μs (1 MHz sampling)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.