pub enum Monidle {
NotIdle = 0,
Idle = 1,
}Expand description
Monitor Idle flag. This flag is set when the Monitor function sees the I2C bus change from active to inactive. This can be used by software to decide when to process data accumulated by the Monitor function. This flag will cause an interrupt when set if enabled via the INTENSET register. The flag can be cleared by writing a 1 to this bit.
Value on reset: 0
Variants§
NotIdle = 0
0: Not idle. The I2C bus is not idle, or this flag has been cleared by software.
Idle = 1
1: Idle. The I2C bus has gone idle at least once since the last time this flag was cleared by software.
Trait Implementations§
impl Copy for Monidle
impl Eq for Monidle
impl StructuralPartialEq for Monidle
Auto Trait Implementations§
impl Freeze for Monidle
impl RefUnwindSafe for Monidle
impl Send for Monidle
impl Sync for Monidle
impl Unpin for Monidle
impl UnwindSafe for Monidle
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