Embassy
embassy-embedded-hal

Crates

git

Versions

default

Flavors

Struct embassy_embedded_hal::shared_bus::blocking::spi::SpiDevice

source ·
pub struct SpiDevice<'a, M: RawMutex, BUS, CS> { /* private fields */ }
Expand description

SPI device on a shared bus.

Implementations§

source§

impl<'a, M: RawMutex, BUS, CS> SpiDevice<'a, M, BUS, CS>

source

pub fn new(bus: &'a Mutex<M, RefCell<BUS>>, cs: CS) -> Self

Create a new SpiDevice.

Trait Implementations§

source§

impl<'a, M: RawMutex, BUS, CS> ErrorType for SpiDevice<'a, M, BUS, CS>
where BUS: ErrorType, CS: OutputPin,

§

type Error = SpiDeviceError<<BUS as ErrorType>::Error, <CS as ErrorType>::Error>

Error type.
source§

impl<BUS, M, CS> SpiDevice for SpiDevice<'_, M, BUS, CS>
where M: RawMutex, BUS: SpiBus, CS: OutputPin,

source§

fn transaction( &mut self, operations: &mut [Operation<'_, u8>] ) -> Result<(), Self::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
source§

impl<'d, M, BUS, CS, BusErr, CsErr> Transfer<u8> for SpiDevice<'_, M, BUS, CS>
where M: RawMutex, BUS: Transfer<u8, Error = BusErr>, CS: OutputPin<Error = CsErr>,

§

type Error = SpiDeviceError<BusErr, CsErr>

Error type
source§

fn transfer<'w>(&mut self, words: &'w mut [u8]) -> Result<&'w [u8], Self::Error>

Sends words to the slave. Returns the words received from the slave
source§

impl<'d, M, BUS, CS, BusErr, CsErr> Write<u8> for SpiDevice<'_, M, BUS, CS>
where M: RawMutex, BUS: Write<u8, Error = BusErr>, CS: OutputPin<Error = CsErr>,

§

type Error = SpiDeviceError<BusErr, CsErr>

Error type
source§

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

Sends words to the slave, ignoring all the incoming words

Auto Trait Implementations§

§

impl<'a, M, BUS, CS> Freeze for SpiDevice<'a, M, BUS, CS>
where CS: Freeze,

§

impl<'a, M, BUS, CS> !RefUnwindSafe for SpiDevice<'a, M, BUS, CS>

§

impl<'a, M, BUS, CS> Send for SpiDevice<'a, M, BUS, CS>
where CS: Send, M: Sync, BUS: Send,

§

impl<'a, M, BUS, CS> Sync for SpiDevice<'a, M, BUS, CS>
where CS: Sync, M: Sync, BUS: Send,

§

impl<'a, M, BUS, CS> Unpin for SpiDevice<'a, M, BUS, CS>
where CS: Unpin,

§

impl<'a, M, BUS, CS> !UnwindSafe for SpiDevice<'a, M, BUS, CS>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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.