[][src]Struct msp430fr2x5x_hal::capture::CaptureParts3

pub struct CaptureParts3<T: CapCmpTimer3> {
    pub cap0: Capture<T, CCR0>,
    pub cap1: Capture<T, CCR1>,
    pub cap2: Capture<T, CCR2>,
    pub tbxiv: TBxIV<T>,
}

Collection of capture pins derived from timer peripheral with 3 capture-compare registers

Fields

cap0: Capture<T, CCR0>

Capture pin 0 (derived from capture-compare register 0)

cap1: Capture<T, CCR1>

Capture pin 1 (derived from capture-compare register 1)

cap2: Capture<T, CCR2>

Capture pin 2 (derived from capture-compare register 2)

tbxiv: TBxIV<T>

Interrupt vector register

Implementations

impl<T: CapturePeriph + CapCmpTimer3> CaptureParts3<T>[src]

pub fn config(timer: T, config: TimerConfig<T>) -> CaptureConfig3<T>[src]

Create capture configuration

Auto Trait Implementations

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

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

impl<T> Unpin for CaptureParts3<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.