pub trait WithDmaSpi3<'d, C, M>{
    // Required method
    fn with_dma(self, channel: Channel<'d, C>) -> SpiDma<'d, SPI3, C, M>;
}

Required Methods§

source

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

Implementors§

source§

impl<'d, C, M> WithDmaSpi3<'d, C, M> for Spi<'d, SPI3, M>