[][src]Trait stm32f0xx_hal::prelude::_embedded_hal_blocking_spi_Write

pub trait _embedded_hal_blocking_spi_Write<W> {
    type Error;
    fn write(&mut self, words: &[W]) -> Result<(), Self::Error>;
}

Blocking write

Associated Types

type Error

Error type

Loading content...

Required methods

fn write(&mut self, words: &[W]) -> Result<(), Self::Error>

Sends words to the slave, ignoring all the incoming words

Loading content...

Implementors

impl<SPI, SCKPIN, MISOPIN, MOSIPIN> Write<u8> for Spi<SPI, SCKPIN, MISOPIN, MOSIPIN, EightBit> where
    SPI: Deref<Target = RegisterBlock>, 
[src]

type Error = Error

impl<SPI, SCKPIN, MISOPIN, MOSIPIN> Write<u16> for Spi<SPI, SCKPIN, MISOPIN, MOSIPIN, SixteenBit> where
    SPI: Deref<Target = RegisterBlock>, 
[src]

type Error = Error

impl<W, S> Write<W> for S where
    S: Default<W>,
    W: Clone
[src]

type Error = <S as FullDuplex<W>>::Error

Loading content...