[][src]Enum lpc54606_pac::usart0::ctl::ADDRDET_A

pub enum ADDRDET_A {
    DISABLED,
    ENABLED,
}

Enable address detect mode.

Value on reset: 0

Variants

DISABLED

0: Disabled. The USART presents all incoming data.

ENABLED

1: Enabled. The USART receiver ignores incoming data that does not have the most significant bit of the data (typically the 9th bit) = 1. When the data MSB bit = 1, the receiver treats the incoming data normally, generating a received data interrupt. Software can then check the data to see if this is an address that should be handled. If it is, the ADDRDET bit is cleared by software and further incoming data is handled normally.

Trait Implementations

impl Clone for ADDRDET_A[src]

impl Copy for ADDRDET_A[src]

impl Debug for ADDRDET_A[src]

impl From<ADDRDET_A> for bool[src]

impl PartialEq<ADDRDET_A> for ADDRDET_A[src]

impl StructuralPartialEq for ADDRDET_A[src]

Auto Trait Implementations

impl Send for ADDRDET_A

impl Sync for ADDRDET_A

impl Unpin for ADDRDET_A

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

type Output = T

Should always be Self

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.