Struct rp2040_pac2::uart::regs::Uartris[][src]

#[repr(transparent)]pub struct Uartris(pub u32);

Raw Interrupt Status Register, UARTRIS

Implementations

impl Uartris[src]

pub const fn oeris(&self) -> bool[src]

Overrun error interrupt status. Returns the raw interrupt state of the UARTOEINTR interrupt.

pub fn set_oeris(&mut self, val: bool)[src]

Overrun error interrupt status. Returns the raw interrupt state of the UARTOEINTR interrupt.

pub const fn beris(&self) -> bool[src]

Break error interrupt status. Returns the raw interrupt state of the UARTBEINTR interrupt.

pub fn set_beris(&mut self, val: bool)[src]

Break error interrupt status. Returns the raw interrupt state of the UARTBEINTR interrupt.

pub const fn peris(&self) -> bool[src]

Parity error interrupt status. Returns the raw interrupt state of the UARTPEINTR interrupt.

pub fn set_peris(&mut self, val: bool)[src]

Parity error interrupt status. Returns the raw interrupt state of the UARTPEINTR interrupt.

pub const fn feris(&self) -> bool[src]

Framing error interrupt status. Returns the raw interrupt state of the UARTFEINTR interrupt.

pub fn set_feris(&mut self, val: bool)[src]

Framing error interrupt status. Returns the raw interrupt state of the UARTFEINTR interrupt.

pub const fn rtris(&self) -> bool[src]

Receive timeout interrupt status. Returns the raw interrupt state of the UARTRTINTR interrupt. a

pub fn set_rtris(&mut self, val: bool)[src]

Receive timeout interrupt status. Returns the raw interrupt state of the UARTRTINTR interrupt. a

pub const fn txris(&self) -> bool[src]

Transmit interrupt status. Returns the raw interrupt state of the UARTTXINTR interrupt.

pub fn set_txris(&mut self, val: bool)[src]

Transmit interrupt status. Returns the raw interrupt state of the UARTTXINTR interrupt.

pub const fn rxris(&self) -> bool[src]

Receive interrupt status. Returns the raw interrupt state of the UARTRXINTR interrupt.

pub fn set_rxris(&mut self, val: bool)[src]

Receive interrupt status. Returns the raw interrupt state of the UARTRXINTR interrupt.

pub const fn dsrrmis(&self) -> bool[src]

nUARTDSR modem interrupt status. Returns the raw interrupt state of the UARTDSRINTR interrupt.

pub fn set_dsrrmis(&mut self, val: bool)[src]

nUARTDSR modem interrupt status. Returns the raw interrupt state of the UARTDSRINTR interrupt.

pub const fn dcdrmis(&self) -> bool[src]

nUARTDCD modem interrupt status. Returns the raw interrupt state of the UARTDCDINTR interrupt.

pub fn set_dcdrmis(&mut self, val: bool)[src]

nUARTDCD modem interrupt status. Returns the raw interrupt state of the UARTDCDINTR interrupt.

pub const fn ctsrmis(&self) -> bool[src]

nUARTCTS modem interrupt status. Returns the raw interrupt state of the UARTCTSINTR interrupt.

pub fn set_ctsrmis(&mut self, val: bool)[src]

nUARTCTS modem interrupt status. Returns the raw interrupt state of the UARTCTSINTR interrupt.

pub const fn rirmis(&self) -> bool[src]

nUARTRI modem interrupt status. Returns the raw interrupt state of the UARTRIINTR interrupt.

pub fn set_rirmis(&mut self, val: bool)[src]

nUARTRI modem interrupt status. Returns the raw interrupt state of the UARTRIINTR interrupt.

Trait Implementations

impl Clone for Uartris[src]

impl Copy for Uartris[src]

impl Default for Uartris[src]

Auto Trait Implementations

impl Send for Uartris

impl Sync for Uartris

impl Unpin for Uartris

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.