atsamd_hal::gpio::dynpin

Struct DynPin

Source
pub struct DynPin { /* private fields */ }
Expand description

A value-level pin, parameterized by DynPinId and DynPinMode

This type acts as a type-erased version of Pin. Every pin is represented by the same type, and pins are tracked and distinguished at run-time.

Implementations§

Source§

impl DynPin

Source

pub fn id(&self) -> DynPinId

Return a copy of the pin ID

Source

pub fn mode(&self) -> DynPinMode

Return a copy of the pin mode

Source

pub fn into_mode(&mut self, mode: DynPinMode)

Convert the pin to the requested DynPinMode

Source

pub fn into_floating_disabled(&mut self)

Disable the pin and set it to float

Source

pub fn into_pull_down_disabled(&mut self)

Disable the pin and set it to pull down

Source

pub fn into_pull_up_disabled(&mut self)

Disable the pin and set it to pull up

Source

pub fn into_floating_input(&mut self)

Configure the pin to operate as a floating input

Source

pub fn into_pull_down_input(&mut self)

Configure the pin to operate as a pulled down input

Source

pub fn into_pull_up_input(&mut self)

Configure the pin to operate as a pulled up input

Source

pub fn into_floating_interrupt(&mut self)

Configure the pin to operate as a floating interrupt

Source

pub fn into_pull_down_interrupt(&mut self)

Configure the pin to operate as a pulled down interrupt

Source

pub fn into_pull_up_interrupt(&mut self)

Configure the pin to operate as a pulled up interrupt

Source

pub fn into_push_pull_output(&mut self)

Configure the pin to operate as a push-pull output

Source

pub fn into_readable_output(&mut self)

Configure the pin to operate as a readable push pull output

Source

pub fn into_alternate(&mut self, config: DynAlternate)

Configure the pin to operate as the corresponding peripheral function.

The config argument indicates the desired peripheral function.

Source

pub fn get_drive_strength(&self) -> bool

Read the current drive strength of the pin.

The drive strength is reset to normal on every change in pin mode.

Source

pub fn set_drive_strength(&mut self, stronger: bool)

Set the drive strength for the pin.

The drive strength is reset to normal on every change in pin mode.

Trait Implementations§

Source§

impl ErrorType for DynPin

Source§

type Error = Error

Error type
Source§

impl<I, M> From<Pin<I, M>> for DynPin
where I: PinId, M: PinMode,

Source§

fn from(_pin: Pin<I, M>) -> Self

Erase the type-level information in a Pin and return a value-level DynPin

Source§

impl InputPin for DynPin

Source§

fn is_high(&mut self) -> Result<bool, Self::Error>

Is the input pin high?
Source§

fn is_low(&mut self) -> Result<bool, Self::Error>

Is the input pin low?
Source§

impl InputPin for DynPin

Source§

type Error = Error

Error type
Source§

fn is_high(&self) -> Result<bool, Self::Error>

Is the input pin high?
Source§

fn is_low(&self) -> Result<bool, Self::Error>

Is the input pin low?
Source§

impl OutputPin for DynPin

Source§

fn set_high(&mut self) -> Result<(), Self::Error>

Drives the pin high. Read more
Source§

fn set_low(&mut self) -> Result<(), Self::Error>

Drives the pin low. Read more
Source§

fn set_state(&mut self, state: PinState) -> Result<(), Self::Error>

Drives the pin high or low depending on the provided value. Read more
Source§

impl OutputPin for DynPin

Source§

type Error = Error

Error type
Source§

fn set_high(&mut self) -> Result<(), Self::Error>

Drives the pin high Read more
Source§

fn set_low(&mut self) -> Result<(), Self::Error>

Drives the pin low Read more
Source§

fn set_state(&mut self, state: PinState) -> Result<(), Self::Error>

Drives the pin high or low depending on the provided value Read more
Source§

impl StatefulOutputPin for DynPin

Source§

fn is_set_high(&mut self) -> Result<bool, Self::Error>

Is the pin in drive high mode? Read more
Source§

fn is_set_low(&mut self) -> Result<bool, Self::Error>

Is the pin in drive low mode? Read more
Source§

fn toggle(&mut self) -> Result<(), Self::Error>

Toggle pin output.
Source§

impl StatefulOutputPin for DynPin

Source§

fn is_set_high(&self) -> Result<bool, Self::Error>

Is the pin in drive high mode? Read more
Source§

fn is_set_low(&self) -> Result<bool, Self::Error>

Is the pin in drive low mode? Read more
Source§

impl ToggleableOutputPin for DynPin

Source§

type Error = Error

Error type
Source§

fn toggle(&mut self) -> Result<(), Self::Error>

Toggle pin output.
Source§

impl<I, M> TryFrom<DynPin> for Pin<I, M>
where I: PinId, M: PinMode,

Source§

fn try_from(pin: DynPin) -> Result<Self, Error>

Try to recreate a type-level Pin from a value-level DynPin

There is no way for the compiler to know if the conversion will be successful at compile-time. We must verify the conversion at run-time or refuse to perform it.

Source§

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations§

§

impl Freeze for DynPin

§

impl RefUnwindSafe for DynPin

§

impl Send for DynPin

§

impl Sync for DynPin

§

impl Unpin for DynPin

§

impl UnwindSafe for DynPin

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.