pub struct SimpleHalSpiDevice<B> { /* private fields */ }
Expand description

Simple implementation of embedded_hal::spi::SpiDevice

You only need this when using the embedded_hal Spi trait interface.

Slave-select is currently handled at the bus level. This no-op device implementation can be used to satisfy the trait.

Implementations§

Trait Implementations§

source§

impl<B: SpiBus<u8>> ErrorType for SimpleHalSpiDevice<B>

§

type Error = Error

Error type.
source§

impl<B: SpiBus<u8>> SpiDevice for SimpleHalSpiDevice<B>

source§

fn transaction( &mut self, operations: &mut [Operation<'_, u8>] ) -> Result<(), Error>

Perform a transaction against the device. Read more
source§

fn read(&mut self, buf: &mut [Word]) -> Result<(), Self::Error>

Do a read within a transaction. Read more
source§

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

Do a write within a transaction. Read more
source§

fn transfer( &mut self, read: &mut [Word], write: &[Word] ) -> Result<(), Self::Error>

Do a transfer within a transaction. Read more
source§

fn transfer_in_place(&mut self, buf: &mut [Word]) -> Result<(), Self::Error>

Do an in-place transfer within a transaction. Read more

Auto Trait Implementations§

§

impl<B> RefUnwindSafe for SimpleHalSpiDevice<B>where B: RefUnwindSafe,

§

impl<B> Send for SimpleHalSpiDevice<B>where B: Send,

§

impl<B> Sync for SimpleHalSpiDevice<B>where B: Sync,

§

impl<B> Unpin for SimpleHalSpiDevice<B>where B: Unpin,

§

impl<B> UnwindSafe for SimpleHalSpiDevice<B>where B: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.