pub struct IC_INTR_MASK_SPEC;Expand description
I2C Interrupt Mask Register.
These bits mask their corresponding interrupt status bits. This register is active low; a value of 0 masks the interrupt, whereas a value of 1 unmasks the interrupt.
You can read this register and get ic_intr_mask::R. You can reset, write, write_with_zero this register using ic_intr_mask::W. You can also modify this register. See API.
Trait Implementations§
Source§impl RegisterSpec for IC_INTR_MASK_SPEC
impl RegisterSpec for IC_INTR_MASK_SPEC
Source§impl Resettable for IC_INTR_MASK_SPEC
reset() method sets IC_INTR_MASK to value 0x08ff
impl Resettable for IC_INTR_MASK_SPEC
reset() method sets IC_INTR_MASK to value 0x08ff
Source§const RESET_VALUE: u32 = 2_303u32
const RESET_VALUE: u32 = 2_303u32
Reset value of the register.
Source§fn reset_value() -> Self::Ux
fn reset_value() -> Self::Ux
Reset value of the register.
Source§impl Writable for IC_INTR_MASK_SPEC
write(|w| ..) method takes ic_intr_mask::W writer structure
impl Writable for IC_INTR_MASK_SPEC
write(|w| ..) method takes ic_intr_mask::W writer structure
Source§const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
Specifies the register bits that are not changed if you pass
1 and are changed if you pass 0Source§const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
Specifies the register bits that are not changed if you pass
0 and are changed if you pass 1impl Readable for IC_INTR_MASK_SPEC
read() method returns ic_intr_mask::R reader structure
Auto Trait Implementations§
impl Freeze for IC_INTR_MASK_SPEC
impl RefUnwindSafe for IC_INTR_MASK_SPEC
impl Send for IC_INTR_MASK_SPEC
impl Sync for IC_INTR_MASK_SPEC
impl Unpin for IC_INTR_MASK_SPEC
impl UnwindSafe for IC_INTR_MASK_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