[][src]Struct stm32f1xx_hal::timer::Timer

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]

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<TIM1>[src]

pub fn tim1<T>(tim: TIM1, timeout: T, clocks: Clocks, apb1: &mut APB2) -> Self where
    T: Into<Hertz>, 
[src]

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]

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]

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]

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

impl CountDown for Timer<TIM1>[src]

type Time = Hertz

The unit of time used by this timer

impl CountDown for Timer<TIM2>[src]

type Time = Hertz

The unit of time used by this timer

impl CountDown for Timer<TIM3>[src]

type Time = Hertz

The unit of time used by this timer

impl CountDown for Timer<TIM4>[src]

type Time = Hertz

The unit of time used by this timer

impl Periodic for Timer<SYST>[src]

impl Periodic for Timer<TIM1>[src]

impl Periodic for Timer<TIM2>[src]

impl Periodic for Timer<TIM3>[src]

impl Periodic for Timer<TIM4>[src]

Auto Trait Implementations

impl<TIM> Send for Timer<TIM> where
    TIM: Send

impl<TIM> Sync for Timer<TIM> where
    TIM: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]