pub trait WriteDma<B, TS>: Transmit where
    B: StaticReadBuffer<Word = TS>,
    Self: Sized + TransferPayload
{ fn write(self, buffer: B) -> Transfer<R, B, Self>; }
Expand description

Trait for DMA writing from memory to peripheral.

Required methods

Implementors