[][src]Enum lpc82x_pac::wkt::ctrl::ALARMFLAG_A

pub enum ALARMFLAG_A {
    NO_TIME_OUT,
    TIME_OUT,
}

Wake-up or alarm timer flag.

Value on reset: 0

Variants

NO_TIME_OUT

0: No time-out. The self wake-up timer has not timed out. Writing a 0 to has no effect.

TIME_OUT

1: Time-out. The self wake-up timer has timed out. This flag generates an interrupt request which can wake up the part from any reduced power mode including Deep power-down if the clock source is the low power oscillator. Writing a 1 clears this status bit.

Trait Implementations

impl From<ALARMFLAG_A> for bool[src]

impl Debug for ALARMFLAG_A[src]

impl PartialEq<ALARMFLAG_A> for ALARMFLAG_A[src]

impl Copy for ALARMFLAG_A[src]

impl Clone for ALARMFLAG_A[src]

Auto Trait Implementations

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