pub trait TimerExt: Sized {
    fn with_clock_frequency<T>(self, frequency: T) -> (Timer1, Timer2)
    where
        T: Into<Hertz>
; fn timers(self) -> (Timer1, Timer2) { ... } }

Required Methods

Configure the timer with a non default clock frequency

Provided Methods

Implementations on Foreign Types

Implementors