pub enum BIDIOE {
OutputDisabled = 0,
OutputEnabled = 1,
}
Expand description
Output enable in bidirectional mode This bit combined with the BIDIMODE bit selects the direction of transfer in bidirectional mode. Note: In master mode, the MOSI pin is used and in slave mode, the MISO pin is used. This bit is not used in I2S mode.
Value on reset: 0
Variants§
OutputDisabled = 0
0: Output disabled (receive-only mode)
OutputEnabled = 1
1: Output enabled (transmit-only mode)
Trait Implementations§
impl Copy for BIDIOE
impl Eq for BIDIOE
impl StructuralPartialEq for BIDIOE
Auto Trait Implementations§
impl Freeze for BIDIOE
impl RefUnwindSafe for BIDIOE
impl Send for BIDIOE
impl Sync for BIDIOE
impl Unpin for BIDIOE
impl UnwindSafe for BIDIOE
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