[][src]Trait bl602_hal::prelude::_embedded_hal_spi_FullDuplex

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

Full duplex (master mode)

Notes

Associated Types

type Error

An enumeration of SPI errors

Loading content...

Required methods

fn try_read(&mut self) -> Result<Word, Error<Self::Error>>

Reads the word stored in the shift register

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

fn try_send(&mut self, word: Word) -> Result<(), Error<Self::Error>>

Sends a word to the slave

Loading content...

Implementors

Loading content...