pub trait WithDmaSpi2<T, RX, TX, P>where
    T: Instance + Spi2Instance,
    TX: Tx,
    RX: Rx,
    P: SpiPeripheral,
{ fn with_dma(self, channel: Channel<TX, RX, P>) -> SpiDma<T, TX, RX, P>; }

Required Methods

Implementors