Trait cortex_m::prelude::_embedded_hal_spi_FullDuplex[][src]

pub trait _embedded_hal_spi_FullDuplex<Word> {
    type Error;
    pub fn read(&mut self) -> Result<Word, Error<Self::Error>>;
pub fn send(&mut self, word: Word) -> Result<(), Error<Self::Error>>; }

Full duplex (master mode)

Notes

Associated Types

type Error[src]

An enumeration of SPI errors

Loading content...

Required methods

pub fn read(&mut self) -> Result<Word, Error<Self::Error>>[src]

Reads the word stored in the shift register

NOTE A word must be sent to the slave before attempting to call this method.

pub fn send(&mut self, word: Word) -> Result<(), Error<Self::Error>>[src]

Sends a word to the slave

Loading content...

Implementors

Loading content...