pub trait TimerHW<S: TimerSpeed> {
// Required methods
fn freq_hw(&self) -> Option<Rate>;
fn configure_hw(&self, divisor: u32);
fn update_hw(&self);
}Expand description
Interface for HW configuration of timer
Required Methods§
Sourcefn configure_hw(&self, divisor: u32)
fn configure_hw(&self, divisor: u32)
Configure the HW for the timer
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".