pub trait _esp_hal_spi_dma_WithDmaSpi2<'d, T, RX, TX, P, M>where
    T: Instance + Spi2Instance,
    TX: Tx,
    RX: Rx,
    P: SpiPeripheral,
    M: DuplexMode,{
    // Required method
    fn with_dma(
        self,
        channel: Channel<TX, RX, P>
    ) -> SpiDma<'d, T, TX, RX, P, M>;
}

Required Methods§

source

fn with_dma(self, channel: Channel<TX, RX, P>) -> SpiDma<'d, T, TX, RX, P, M>

Implementors§

source§

impl<'d, T, RX, TX, P, M> WithDmaSpi2<'d, T, RX, TX, P, M> for Spi<'d, T, M>where T: Instance + Spi2Instance, TX: Tx, RX: Rx, P: SpiPeripheral + Spi2Peripheral, M: DuplexMode,