atsamd_hal::sercom::spi::size

Enum NineBit

Source
pub enum NineBit {}
Expand description

CharSize variant for 9-bit transactions

Trait Implementations§

Source§

impl CharSize for NineBit

Source§

const BITS: u8 = 1u8

Register bit pattern for the corresponding CharSize
Source§

type Word = u16

Word size for the character size
Source§

impl<P, M> WriteIter<<NineBit as CharSize>::Word> for Spi<Config<P, M, NineBit>, Duplex>
where Config<P, M, NineBit>: ValidConfig, P: ValidPads, M: OpMode,

Implement WriteIter for Spi structs with Duplex Capability

The transfer accepts a slice of primitive integers, depending on the CharSize (u8 or u16).

Source§

type Error = Error

Error type
Source§

fn write_iter<WI>(&mut self, words: WI) -> Result<(), Error>
where WI: IntoIterator<Item = Word<NineBit>>,

Sends words to the slave, ignoring all the incoming words
Source§

impl<P, M> WriteIter<<NineBit as CharSize>::Word> for Spi<Config<P, M, NineBit>, Tx>
where Config<P, M, NineBit>: ValidConfig, P: ValidPads, M: OpMode,

Implement WriteIter for Spi structs with Tx Capability

The transfer accepts a slice of primitive integers, depending on the CharSize (u8 or u16).

Because the Capability is Tx, this implementation never reads the DATA register and ignores all buffer overflow errors.

Source§

type Error = Error

Error type
Source§

fn write_iter<WI>(&mut self, words: WI) -> Result<(), Error>
where WI: IntoIterator<Item = Word<NineBit>>,

Sends words to the slave, ignoring all the incoming words
Source§

impl<P, M, A> Transfer<<NineBit as CharSize>::Word> for Spi<Config<P, M, NineBit>, A>
where Config<P, M, NineBit>: ValidConfig, P: ValidPads, M: OpMode, A: Receive,

Implement Transfer for Spi structs that can Receive

The transfer accepts a slice of primitive integers, depending on the CharSize (u8 or u16).

Source§

type Error = Error

Error type
Source§

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

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

impl<P, M> Write<<NineBit as CharSize>::Word> for Spi<Config<P, M, NineBit>, Duplex>
where Config<P, M, NineBit>: ValidConfig, P: ValidPads, M: OpMode,

Implement Write for Spi structs with Duplex Capability

The transfer accepts a slice of primitive integers, depending on the CharSize (u8 or u16).

Source§

type Error = Error

Error type
Source§

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

Sends words to the slave, ignoring all the incoming words
Source§

impl<P, M> Write<<NineBit as CharSize>::Word> for Spi<Config<P, M, NineBit>, Tx>
where Config<P, M, NineBit>: ValidConfig, P: ValidPads, M: OpMode,

Implement Write for Spi structs with Tx Capability

The transfer accepts a slice of primitive integers, depending on the CharSize (u8 or u16).

Because the Capability is Tx, this implementation never reads the DATA register and ignores all buffer overflow errors.

Source§

type Error = Error

Error type
Source§

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

Sends words to the slave, ignoring all the incoming words

Auto Trait Implementations§

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> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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.
Source§

impl<C> AtomicSize for C
where C: CharSize,

Source§

impl<C> Size for C
where C: CharSize,