Embassy
embassy-stm32

Crates

git

Versions

stm32f030c6

Flavors

pub struct ExtiInput<'d> { /* private fields */ }
Expand description

EXTI input driver.

This driver augments a GPIO Input with EXTI functionality. EXTI is not built into Input itself because it needs to take ownership of the corresponding EXTI channel, which is a limited resource.

Pins PA5, PB5, PC5… all use EXTI channel 5, so you can’t use EXTI on, say, PA5 and PC5 at the same time.

Implementations§

source§

impl<'d> ExtiInput<'d>

source

pub fn new<T: GpioPin>( pin: impl Peripheral<P = T> + 'd, ch: impl Peripheral<P = T::ExtiChannel> + 'd, pull: Pull ) -> Self

Create an EXTI input.

source

pub fn is_high(&self) -> bool

Get whether the pin is high.

source

pub fn is_low(&self) -> bool

Get whether the pin is low.

source

pub fn get_level(&self) -> Level

Get the pin level.

source

pub async fn wait_for_high(&mut self)

Asynchronously wait until the pin is high.

This returns immediately if the pin is already high.

source

pub async fn wait_for_low(&mut self)

Asynchronously wait until the pin is low.

This returns immediately if the pin is already low.

source

pub async fn wait_for_rising_edge(&mut self)

Asynchronously wait until the pin sees a rising edge.

If the pin is already high, it will wait for it to go low then back high.

source

pub async fn wait_for_falling_edge(&mut self)

Asynchronously wait until the pin sees a falling edge.

If the pin is already low, it will wait for it to go high then back low.

source

pub async fn wait_for_any_edge(&mut self)

Asynchronously wait until the pin sees any edge (either rising or falling).

Trait Implementations§

source§

impl<'d> ErrorType for ExtiInput<'d>

§

type Error = Infallible

Error type
source§

impl<'d> InputPin for ExtiInput<'d>

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<'d> InputPin for ExtiInput<'d>

§

type Error = Infallible

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<'d> Wait for ExtiInput<'d>

source§

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

Wait until the pin is high. If it is already high, return immediately. Read more
source§

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

Wait until the pin is low. If it is already low, return immediately. Read more
source§

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

Wait for the pin to undergo a transition from low to high. Read more
source§

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

Wait for the pin to undergo a transition from high to low. Read more
source§

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

Wait for the pin to undergo any transition, i.e low to high OR high to low.
source§

impl<'d> Unpin for ExtiInput<'d>

Auto Trait Implementations§

§

impl<'d> Freeze for ExtiInput<'d>

§

impl<'d> RefUnwindSafe for ExtiInput<'d>

§

impl<'d> Send for ExtiInput<'d>

§

impl<'d> Sync for ExtiInput<'d>

§

impl<'d> !UnwindSafe for ExtiInput<'d>

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.