pub trait SpiBusFlush: ErrorType {
    async fn flush(&mut self) -> Result<(), Self::Error>;
}
Expand description

Flush support for SPI bus

Required Methods

Wait until all operations have completed and the bus is idle.

See (the docs on embedded-hal)[embedded_hal::spi::blocking] for information on flushing.

Implementations on Foreign Types

Implementors