[][src]Enum tm4c129x::epi0::fifolvl::WRFIFO_A

pub enum WRFIFO_A {
    EMPT,
    _2,
    _1,
    NFULL,
}

Write FIFO

Value on reset: 0

Variants

EMPT

0: Interrupt is triggered while WRFIFO is empty.

_2

2: Interrupt is triggered until there are only two slots available. Thus, trigger is deasserted when there are two WRFIFO entries present. This configuration is optimized for bursts of 2

_1

3: Interrupt is triggered until there is one WRFIFO entry available. This configuration expects only single writes

NFULL

4: Trigger interrupt when WRFIFO is not full, meaning trigger will continue to assert until there are four entries in the WRFIFO

Trait Implementations

impl From<WRFIFO_A> for u8[src]

impl Debug for WRFIFO_A[src]

impl PartialEq<WRFIFO_A> for WRFIFO_A[src]

impl Copy for WRFIFO_A[src]

impl StructuralPartialEq for WRFIFO_A[src]

impl Clone for WRFIFO_A[src]

Auto Trait Implementations

impl Unpin for WRFIFO_A

impl Send for WRFIFO_A

impl Sync for WRFIFO_A

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self