pub enum VTTXW {
Clear = 0,
}
Expand description
Valid USB transaction transmitted Device mode This bit is set by the hardware when an IN transaction is successfully completed on this endpoint; the software can only clear this bit. If the CTRM bit in the USB_CNTR register is set accordingly, a generic interrupt condition is generated together with the endpoint related interrupt condition, which is always activated. A transaction ended with a NAK or STALL handshake does not set this bit, since no data is actually transferred, as in the case of protocol errors or data toggle mismatches. This bit is read/write but only ’0 can be written. Host mode Same of VTRX behaviour but for USB OUT and SETUP transactions.
Value on reset: 0
Variants§
Clear = 0
0: Clear flag
Trait Implementations§
impl Copy for VTTXW
impl Eq for VTTXW
impl StructuralPartialEq for VTTXW
Auto Trait Implementations§
impl Freeze for VTTXW
impl RefUnwindSafe for VTTXW
impl Send for VTTXW
impl Sync for VTTXW
impl Unpin for VTTXW
impl UnwindSafe for VTTXW
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