Trait stm32h7xx_hal::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

  • It’s the task of the user of this interface to manage the slave select lines

  • Due to how full duplex SPI works each read call must be preceded by a send call.

  • Some SPIs can work with 8-bit and 16-bit words. You can overload this trait with different Word types to allow operation in both modes.

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

impl FullDuplex<u8> for Spi<SPI1, Enabled, u8>[src]

type Error = Error

impl FullDuplex<u8> for Spi<SPI2, Enabled, u8>[src]

type Error = Error

impl FullDuplex<u8> for Spi<SPI3, Enabled, u8>[src]

type Error = Error

impl FullDuplex<u8> for Spi<SPI4, Enabled, u8>[src]

type Error = Error

impl FullDuplex<u8> for Spi<SPI5, Enabled, u8>[src]

type Error = Error

impl FullDuplex<u8> for Spi<SPI6, Enabled, u8>[src]

type Error = Error

impl FullDuplex<u16> for Spi<SPI1, Enabled, u16>[src]

type Error = Error

impl FullDuplex<u16> for Spi<SPI2, Enabled, u16>[src]

type Error = Error

impl FullDuplex<u16> for Spi<SPI3, Enabled, u16>[src]

type Error = Error

impl FullDuplex<u16> for Spi<SPI4, Enabled, u16>[src]

type Error = Error

impl FullDuplex<u16> for Spi<SPI5, Enabled, u16>[src]

type Error = Error

impl FullDuplex<u16> for Spi<SPI6, Enabled, u16>[src]

type Error = Error

impl FullDuplex<u32> for Spi<SPI1, Enabled, u32>[src]

type Error = Error

impl FullDuplex<u32> for Spi<SPI2, Enabled, u32>[src]

type Error = Error

impl FullDuplex<u32> for Spi<SPI3, Enabled, u32>[src]

type Error = Error

impl FullDuplex<u32> for Spi<SPI4, Enabled, u32>[src]

type Error = Error

impl FullDuplex<u32> for Spi<SPI5, Enabled, u32>[src]

type Error = Error

impl FullDuplex<u32> for Spi<SPI6, Enabled, u32>[src]

type Error = Error

Loading content...