[][src]Enum msp430fr2x5x_hal::capture::CaptureVector

pub enum CaptureVector<T> {
    NoInterrupt,
    Capture1(InterruptCapture<T, CCR1>),
    Capture2(InterruptCapture<T, CCR2>),
    Capture3(InterruptCapture<T, CCR3>),
    Capture4(InterruptCapture<T, CCR4>),
    Capture5(InterruptCapture<T, CCR5>),
    Capture6(InterruptCapture<T, CCR6>),
    MainTimer,
}

Capture TBIV interrupt vector

Variants

NoInterrupt

No pending interrupt

Capture1(InterruptCapture<T, CCR1>)

Interrupt caused by capture register 1.

Capture2(InterruptCapture<T, CCR2>)

Interrupt caused by capture register 2.

Capture3(InterruptCapture<T, CCR3>)

Interrupt caused by capture register 3.

Capture4(InterruptCapture<T, CCR4>)

Interrupt caused by capture register 4.

Capture5(InterruptCapture<T, CCR5>)

Interrupt caused by capture register 5.

Capture6(InterruptCapture<T, CCR6>)

Interrupt caused by capture register 6.

MainTimer

Interrupt caused by main timer overflow

Auto Trait Implementations

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

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

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