Struct lpc55_pac::usart0::stat::W[][src]

pub struct W(_);

Register STAT writer

Implementations

impl W[src]

pub fn deltacts(&mut self) -> DELTACTS_W<'_>[src]

Bit 5 - This bit is set when a change in the state is detected for the CTS flag above. This bit is cleared by software.

pub fn deltarxbrk(&mut self) -> DELTARXBRK_W<'_>[src]

Bit 11 - This bit is set when a change in the state of receiver break detection occurs. Cleared by software.

pub fn start(&mut self) -> START_W<'_>[src]

Bit 12 - This bit is set when a start is detected on the receiver input. Its purpose is primarily to allow wake-up from Deep-sleep or Power-down mode immediately when a start is detected. Cleared by software.

pub fn framerrint(&mut self) -> FRAMERRINT_W<'_>[src]

Bit 13 - Framing Error interrupt flag. This flag is set when a character is received with a missing stop bit at the expected location. This could be an indication of a baud rate or configuration mismatch with the transmitting source.

pub fn parityerrint(&mut self) -> PARITYERRINT_W<'_>[src]

Bit 14 - Parity Error interrupt flag. This flag is set when a parity error is detected in a received character.

pub fn rxnoiseint(&mut self) -> RXNOISEINT_W<'_>[src]

Bit 15 - Received Noise interrupt flag. Three samples of received data are taken in order to determine the value of each received data bit, except in synchronous mode. This acts as a noise filter if one sample disagrees. This flag is set when a received data bit contains one disagreeing sample. This could indicate line noise, a baud rate or character format mismatch, or loss of synchronization during data reception.

pub fn aberr(&mut self) -> ABERR_W<'_>[src]

Bit 16 - Auto baud Error. An auto baud error can occur if the BRG counts to its limit before the end of the start bit that is being measured, essentially an auto baud time-out.

pub unsafe fn bits(&mut self, bits: u32) -> &mut Self[src]

Writes raw bits to the register.

Methods from Deref<Target = W<STAT_SPEC>>

pub unsafe fn bits(&mut self, bits: REG::Ux) -> &mut Self[src]

Writes raw bits to the register.

Trait Implementations

impl Deref for W[src]

type Target = W<STAT_SPEC>

The resulting type after dereferencing.

impl DerefMut for W[src]

impl From<W<STAT_SPEC>> for W[src]

Auto Trait Implementations

impl Send for W

impl Sync for W

impl Unpin for W

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, 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.