pub trait TimerHW<S>where
    S: TimerSpeed,
{ fn get_freq_hw(&self) -> Option<Rate<u32, 1, 1>>; fn configure_hw(&self, divisor: u32); fn update_hw(&self); }
Expand description

Interface for HW configuration of timer

Required Methods

Get the current source timer frequency from the HW

Configure the HW for the timer

Update the timer in HW

Implementors

Timer HW implementation for LowSpeed timers