Struct stm32f103xx_hal::timer::Timer
[−]
[src]
pub struct Timer<TIM> { /* fields omitted */ }
Methods
impl Timer<SYST>
[src]
pub fn syst<T>(syst: SYST, timeout: T, clocks: Clocks) -> Self where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
pub fn listen(&mut self, event: Event)
[src]
Starts listening for an event
pub fn unlisten(&mut self, event: Event)
[src]
Stops listening for an event
impl Timer<TIM2>
[src]
pub fn tim2<T>(tim: TIM2, timeout: T, clocks: Clocks, apb1: &mut APB1) -> Self where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
pub fn listen(&mut self, event: Event)
[src]
Starts listening for an event
pub fn unlisten(&mut self, event: Event)
[src]
Stops listening for an event
impl Timer<TIM3>
[src]
pub fn tim3<T>(tim: TIM3, timeout: T, clocks: Clocks, apb1: &mut APB1) -> Self where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
pub fn listen(&mut self, event: Event)
[src]
Starts listening for an event
pub fn unlisten(&mut self, event: Event)
[src]
Stops listening for an event
impl Timer<TIM4>
[src]
pub fn tim4<T>(tim: TIM4, timeout: T, clocks: Clocks, apb1: &mut APB1) -> Self where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
pub fn listen(&mut self, event: Event)
[src]
Starts listening for an event
pub fn unlisten(&mut self, event: Event)
[src]
Stops listening for an event
Trait Implementations
impl CountDown for Timer<SYST>
[src]
type Time = Hertz
The unit of time used by this timer
fn start<T>(&mut self, timeout: T) where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
Starts a new count down
fn wait(&mut self) -> Result<(), !>
[src]
Non-blockingly "waits" until the count down finishes Read more
impl Periodic for Timer<SYST>
[src]
impl CountDown for Timer<TIM2>
[src]
type Time = Hertz
The unit of time used by this timer
fn start<T>(&mut self, timeout: T) where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
Starts a new count down
fn wait(&mut self) -> Result<(), !>
[src]
Non-blockingly "waits" until the count down finishes Read more
impl Periodic for Timer<TIM2>
[src]
impl CountDown for Timer<TIM3>
[src]
type Time = Hertz
The unit of time used by this timer
fn start<T>(&mut self, timeout: T) where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
Starts a new count down
fn wait(&mut self) -> Result<(), !>
[src]
Non-blockingly "waits" until the count down finishes Read more
impl Periodic for Timer<TIM3>
[src]
impl CountDown for Timer<TIM4>
[src]
type Time = Hertz
The unit of time used by this timer
fn start<T>(&mut self, timeout: T) where
T: Into<Hertz>,
[src]
T: Into<Hertz>,
Starts a new count down
fn wait(&mut self) -> Result<(), !>
[src]
Non-blockingly "waits" until the count down finishes Read more