Trait embedded_hal::blocking::spi::Transactional[][src]

pub trait Transactional<W: 'static> {
    type Error;
    fn exec<'a>(
        &mut self,
        operations: &mut [Operation<'a, W>]
    ) -> Result<(), Self::Error>; }
Expand description

Transactional trait allows multiple actions to be executed as part of a single SPI transaction

Associated Types

Associated error type

Required methods

Execute the provided transactions

Implementors