Struct kernel::hil::spi::cs::ChipSelectPolar

source ·
pub struct ChipSelectPolar<'a, P: Output> {
    pub pin: &'a P,
    pub polarity: Polarity,
}
Expand description

A convenience wrapper type around Output GPIO pins that implements IntoChipSelect for both ActiveLow and ActiveHigh.

Fields§

§pin: &'a P

The underlying chip select “pin”.

§polarity: Polarity

The polarity from which this wrapper was derived using IntoChipSelect.

Implementations§

source§

impl<'a, P: Output> ChipSelectPolar<'a, P>

When wrapping a GPIO pin that implements gpio::Output, users can use the activate and deactivate methods to automatically set or clear the chip select pin based on the stored polarity.

source

pub fn deactivate(&self)

Deactivate the chip select pin.

High if active low, low if active high.

source

pub fn activate(&self)

Active the chip select pin.

Low if active low, high if active high.

Trait Implementations§

source§

impl<'a, P: Output> Clone for ChipSelectPolar<'a, P>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, P: Output, A: ChipSelectActivePolarity> IntoChipSelect<ChipSelectPolar<'a, P>, A> for &'a P

source§

fn into_cs(self) -> ChipSelectPolar<'a, P>

source§

impl<'a, P: Output> Copy for ChipSelectPolar<'a, P>

Auto Trait Implementations§

§

impl<'a, P> Freeze for ChipSelectPolar<'a, P>

§

impl<'a, P> RefUnwindSafe for ChipSelectPolar<'a, P>
where P: RefUnwindSafe,

§

impl<'a, P> Send for ChipSelectPolar<'a, P>
where P: Sync,

§

impl<'a, P> Sync for ChipSelectPolar<'a, P>
where P: Sync,

§

impl<'a, P> Unpin for ChipSelectPolar<'a, P>

§

impl<'a, P> UnwindSafe for ChipSelectPolar<'a, P>
where P: RefUnwindSafe,

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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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.