pub enum ESOFW {
Clear = 0,
}
Expand description
Expected start of frame This bit is set by the hardware when an SOF packet is expected but not received. The host sends an SOF packet each 1ms, but if the device does not receive it properly, the Suspend Timer issues this interrupt. If three consecutive ESOF interrupts are generated (i.e. three SOF packets are lost) without any traffic occurring in between, a SUSP interrupt is generated. This bit is set even when the missing SOF packets occur while the Suspend Timer is not yet locked. This bit is read/write but only ’0 can be written and writing ’1 has no effect.
Value on reset: 0
Variants§
Clear = 0
0: Clear flag
Trait Implementations§
impl Copy for ESOFW
impl Eq for ESOFW
impl StructuralPartialEq for ESOFW
Auto Trait Implementations§
impl Freeze for ESOFW
impl RefUnwindSafe for ESOFW
impl Send for ESOFW
impl Sync for ESOFW
impl Unpin for ESOFW
impl UnwindSafe for ESOFW
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