pub trait TimerCollection {
// Required method
fn timers(self) -> &'static mut [OneShotTimer<'static, Blocking>];
}
Expand description
A trait to allow better UX for initializing the timers.
This trait is meant to be used only for the init
function.
Calling timers()
multiple times may panic.