Struct rp2040_pac::i2c0::ic_rxflr::IC_RXFLR_SPEC
source · pub struct IC_RXFLR_SPEC;
Expand description
I2C Receive FIFO Level Register This register contains the number of valid data entries in the receive FIFO buffer. It is cleared whenever: - The I2C is disabled - Whenever there is a transmit abort caused by any of the events tracked in IC_TX_ABRT_SOURCE The register increments whenever data is placed into the receive FIFO and decrements when data is taken from the receive FIFO.
You can read
this register and get ic_rxflr::R
. See API.
Trait Implementations§
source§impl RegisterSpec for IC_RXFLR_SPEC
impl RegisterSpec for IC_RXFLR_SPEC
source§impl Resettable for IC_RXFLR_SPEC
impl Resettable for IC_RXFLR_SPEC
reset()
method sets IC_RXFLR to value 0
source§const RESET_VALUE: u32 = 0u32
const RESET_VALUE: u32 = 0u32
Reset value of the register.
source§fn reset_value() -> Self::Ux
fn reset_value() -> Self::Ux
Reset value of the register.
impl Readable for IC_RXFLR_SPEC
read()
method returns ic_rxflr::R
reader structure
Auto Trait Implementations§
impl Freeze for IC_RXFLR_SPEC
impl RefUnwindSafe for IC_RXFLR_SPEC
impl Send for IC_RXFLR_SPEC
impl Sync for IC_RXFLR_SPEC
impl Unpin for IC_RXFLR_SPEC
impl UnwindSafe for IC_RXFLR_SPEC
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more