#[repr(u8)]pub enum DataMode {
Sdr = 0,
Ddr = 1,
}
Expand description
Sets the Qspi data mode. Affects the DDRM field of the CCR reg.
Variants§
Sdr = 0
In SDR mode, when the QUADSPI is driving the IO0/SO, IO1, IO2, IO3 signals, these signals transition only with the falling edge of CLK.
Ddr = 1
In DDR mode, when the QUADSPI is driving the IO0/SO, IO1, IO2, IO3 signals in the address/alternate-byte/data phases, a bit is sent on each of the falling and rising edges of CLK.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DataMode
impl RefUnwindSafe for DataMode
impl Send for DataMode
impl Sync for DataMode
impl Unpin for DataMode
impl UnwindSafe for DataMode
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