Struct rp2040_pac2::i2c::regs::IcClrTxAbrt[][src]

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

Clear TX_ABRT Interrupt Register

Implementations

impl IcClrTxAbrt[src]

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

Read this register to clear the TX_ABRT interrupt (bit 6) of the IC_RAW_INTR_STAT register, and the IC_TX_ABRT_SOURCE register. This also releases the TX FIFO from the flushed/reset state, allowing more writes to the TX FIFO. Refer to Bit 9 of the IC_TX_ABRT_SOURCE register for an exception to clearing IC_TX_ABRT_SOURCE. Reset value: 0x0

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

Read this register to clear the TX_ABRT interrupt (bit 6) of the IC_RAW_INTR_STAT register, and the IC_TX_ABRT_SOURCE register. This also releases the TX FIFO from the flushed/reset state, allowing more writes to the TX FIFO. Refer to Bit 9 of the IC_TX_ABRT_SOURCE register for an exception to clearing IC_TX_ABRT_SOURCE. Reset value: 0x0

Trait Implementations

impl Clone for IcClrTxAbrt[src]

impl Copy for IcClrTxAbrt[src]

impl Default for IcClrTxAbrt[src]

Auto Trait Implementations

impl Send for IcClrTxAbrt

impl Sync for IcClrTxAbrt

impl Unpin for IcClrTxAbrt

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.