Struct rp2040_pac::i2c0::ic_intr_stat::IC_INTR_STAT_SPEC
source · pub struct IC_INTR_STAT_SPEC;
Expand description
I2C Interrupt Status Register
Each bit in this register has a corresponding mask bit in the IC_INTR_MASK register. These bits are cleared by reading the matching interrupt clear register. The unmasked raw versions of these bits are available in the IC_RAW_INTR_STAT register.
You can read
this register and get ic_intr_stat::R
. See API.
Trait Implementations§
source§impl RegisterSpec for IC_INTR_STAT_SPEC
impl RegisterSpec for IC_INTR_STAT_SPEC
source§impl Resettable for IC_INTR_STAT_SPEC
impl Resettable for IC_INTR_STAT_SPEC
reset()
method sets IC_INTR_STAT 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_INTR_STAT_SPEC
read()
method returns ic_intr_stat::R
reader structure
Auto Trait Implementations§
impl Freeze for IC_INTR_STAT_SPEC
impl RefUnwindSafe for IC_INTR_STAT_SPEC
impl Send for IC_INTR_STAT_SPEC
impl Sync for IC_INTR_STAT_SPEC
impl Unpin for IC_INTR_STAT_SPEC
impl UnwindSafe for IC_INTR_STAT_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