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

Required Methods§

source

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

Implementors§

source§

impl<'d, T, C, M> WithDmaSpi2<'d, T, C, M> for Spi<'d, T, M>where T: Instance + Spi2Instance, C: ChannelTypes, <C as ChannelTypes>::P: SpiPeripheral + Spi2Peripheral, M: DuplexMode,