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

pub trait Transfer<W> {
    type Error;
    fn transfer<'w>(
        &mut self,
        words: &'w mut [W]
    ) -> Result<&'w [W], Self::Error>; }
Expand description

Blocking transfer

Associated Types

Error type

Required methods

Sends words to the slave. Returns the words received from the slave

Implementors