pub trait SpiBusFlush: ErrorType {
    type FlushFuture<'a>: Future<Output = Result<(), Self::Error>>
    where
        Self: 'a
; fn flush<'a>(&'a mut self) -> Self::FlushFuture<'a>; }
Expand description

Flush support for SPI bus

Required Associated Types

Future returned by the flush method.

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