pub trait WithDmaSpi2<'d, C>where
    C: ChannelTypes,
    <C as ChannelTypes>::P: SpiPeripheral,{
    // Required method
    fn with_dma(self, channel: Channel<'d, C>) -> SpiDma<'d, SPI2, C>;
}

Required Methods§

source

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

Implementors§