[]Trait circuit_playground_express::prelude::_embedded_hal_spi_FullDuplex

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

Sends a word to the slave

Loading content...

Implementors

impl FullDuplex<u8> for SPIMaster0[src]

type Error = Error

impl FullDuplex<u8> for SPIMaster1[src]

type Error = Error

impl FullDuplex<u8> for SPIMaster2[src]

type Error = Error

impl FullDuplex<u8> for SPIMaster3[src]

type Error = Error

impl FullDuplex<u8> for SPIMaster4[src]

type Error = Error

impl FullDuplex<u8> for SPIMaster5[src]

type Error = Error

Loading content...