pub trait SpiBusWrite<Word: 'static + Copy = u8>: SpiBusFlush {
    async fn write(&mut self, words: &[Word]) -> Result<(), Self::Error>;
}
Expand description

Write-only SPI

Required Methods

Write words to the slave, ignoring all the incoming words

Implementations are allowed to return before the operation is complete. See (the docs on embedded-hal)[embedded_hal::spi::blocking] for details on flushing.

Implementations on Foreign Types

Implementors