Trait crabik_board::prelude::_embedded_hal_blocking_spi_Write[][src]

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

Blocking write

Associated Types

type Error[src]

Error type

Loading content...

Required methods

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

Sends words to the slave, ignoring all the incoming words

Loading content...

Implementations on Foreign Types

impl<T> Write<u8> for Spim<T> where
    T: Instance
[src]

type Error = Error

Loading content...

Implementors

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

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

Loading content...