[][src]Struct msp430fr2x5x_hal::timer::TimerConfig

pub struct TimerConfig<T: TimerPeriph> { /* fields omitted */ }

Configuration object for the TimerB peripheral

Used to configure Timer, Capture, and Pwm, which all use the TimerB peripheral.

Implementations

impl<T: TimerPeriph> TimerConfig<T>[src]

pub fn aclk(_aclk: &Aclk) -> Self[src]

Configure timer clock source to ACLK

pub fn smclk(_smclk: &Smclk) -> Self[src]

Configure timer clock source to SMCLK

pub fn tbclk(_pin: T::Tbxclk) -> Self[src]

Configure timer clock source to TBCLK

pub fn clk_div(self, div: TimerDiv, ex_div: TimerExDiv) -> Self[src]

Configure the normal clock divider and expansion clock divider settings

Auto Trait Implementations

impl<T> Send for TimerConfig<T> where
    T: Send
[src]

impl<T> Sync for TimerConfig<T> where
    T: Sync
[src]

impl<T> Unpin for TimerConfig<T> where
    T: Unpin
[src]

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.