[][src]Enum lpc55s6x_pac::pint::pmcfg::CFG6_A

pub enum CFG6_A {
    CONSTANT_HIGH,
    STICKY_RISING_EDGE,
    STICKY_FALLING_EDGE,
    STICKY_RISING_FALLING_EDGE,
    HIGH_LEVEL,
    LOW_LEVEL,
    CONSTANT_ZERO,
    EVENT,
}

Possible values of the field CFG6

Variants

CONSTANT_HIGH

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

STICKY_RISING_EDGE

Sticky 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. This bit is only cleared when the PMCFG or the PMSRC registers are written to.

STICKY_FALLING_EDGE

Sticky 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. This bit is only cleared when the PMCFG or the PMSRC registers are written to.

STICKY_RISING_FALLING_EDGE

Sticky 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. This bit is only cleared when the PMCFG or the PMSRC registers are written to.

HIGH_LEVEL

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

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

CONSTANT_ZERO

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

EVENT

Event. Non-sticky rising or falling edge. 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 value 0x3) . This bit is cleared after one clock cycle.

Trait Implementations

impl Debug for CFG6_A[src]

impl PartialEq<CFG6_A> for CFG6_A[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Copy for CFG6_A[src]

impl From<CFG6_A> for u8[src]

impl Clone for CFG6_A[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Unpin for CFG6_A

impl Sync for CFG6_A

impl Send for CFG6_A

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