Trait embedded_hal::spi::blocking::Read[][src]

pub trait Read<W = u8> {
    type Error: Error;
    fn read(&mut self, words: &mut [W]) -> Result<(), Self::Error>;
}
Expand description

Blocking read

Associated Types

Error type

Required methods

Reads words from the slave.

The word value sent on MOSI during reading is implementation-defined, typically 0x00, 0xFF, or configurable.

Implementations on Foreign Types

Implementors