[][src]Enum lpc81x_pac::pin_int::pmcfg::CFG5W

pub enum CFG5W {
    CONSTANT_1_THIS_BIT,
    RISING_EDGE_MATCH_O,
    FALLING_EDGE_MATCH_,
    RISING_OR_FALLING_ED,
    HIGH_LEVEL_MATCH_F,
    LOW_LEVEL_MATCH_OCC,
    CONSTANT_0_THIS_BIT,
    EVENT_MATCH_OCCURS_,
}

Values that can be written to the field CFG5

Variants

CONSTANT_1_THIS_BIT

Constant 1. This bit slice always contributes to a product term match.

RISING_EDGE_MATCH_O

Rising edge. Match occurs if a rising edge on the specified input has occurred since the last time the edge detection for this bit slice was cleared.

FALLING_EDGE_MATCH_

Falling edge. Match occurs if a falling edge on the specified input has occurred since the last time the edge detection for this bit slice was cleared.

RISING_OR_FALLING_ED

Rising or falling edge. Match occurs if either a rising or falling edge on the specified input has occurred since the last time the edge detection for this bit slice was cleared.

HIGH_LEVEL_MATCH_F

High level. Match (for this bit slice) occurs when there is a high level on the input specified for this bit slice in the PMSRC register.

LOW_LEVEL_MATCH_OCC

Low level. Match occurs when there is a low level on the specified input.

CONSTANT_0_THIS_BIT

Constant 0. This bit slice never contributes to a match (should be used to disable any unused bit slices)

EVENT_MATCH_OCCURS_

Event. Match occurs on an event - i.e. when either a rising or falling edge is first detected on the specified input (this is a non-sticky version of option 3)

Trait Implementations

impl PartialEq<CFG5W> for CFG5W[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Debug for CFG5W[src]

impl Copy for CFG5W[src]

impl Clone for CFG5W[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for CFG5W

impl Sync for CFG5W

Blanket Implementations

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> From<T> for 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