[][src]Struct wio_terminal::QSPIFlash

pub struct QSPIFlash {
    pub sck: Pb10<Input<Floating>>,
    pub cs: Pb11<Input<Floating>>,
    pub d0: Pa8<Input<Floating>>,
    pub d1: Pa9<Input<Floating>>,
    pub d2: Pa10<Input<Floating>>,
    pub d3: Pa11<Input<Floating>>,
}

QSPI Flash pins (uses SERCOM4)

Fields

sck: Pb10<Input<Floating>>

QSPI Flash sck pin

cs: Pb11<Input<Floating>>

QSPI Flash chip select pin

d0: Pa8<Input<Floating>>

QSPI Flash d0 pin

d1: Pa9<Input<Floating>>

QSPI Flash d1 pin

d2: Pa10<Input<Floating>>

QSPI Flash d2 pin

d3: Pa11<Input<Floating>>

QSPI Flash d3 pin

Implementations

impl QSPIFlash[src]

pub fn init(self, mclk: &mut MCLK, port: &mut Port, qspi: QSPI) -> Qspi<OneShot>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.