Struct tm4c123x_hal::gpio::gpioa::PAx

source ·
pub struct PAx<MODE> { /* private fields */ }
Expand description

Partially erased pin

Implementations§

source§

impl<MODE> PAx<Input<MODE>>where MODE: InputMode,

source

pub fn set_interrupt_mode(&mut self, mode: InterruptMode)

Enables or disables interrupts on this GPIO pin.

source

pub fn get_interrupt_status(&self) -> bool

Returns the current interrupt status for this pin.

source

pub fn clear_interrupt(&self)

Marks the interrupt for this pin as handled. You should call this (or perform its functionality) from the ISR.

Trait Implementations§

source§

impl<MODE> InputPin for PAx<Input<MODE>>where MODE: InputMode,

source§

fn is_high(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the input pin high?
source§

fn is_low(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the input pin low?
source§

impl<MODE> OutputPin for PAx<Output<MODE>>where MODE: OutputMode,

source§

fn set_high(&mut self)

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin high Read more
source§

fn set_low(&mut self)

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin low Read more
source§

impl<MODE> StatefulOutputPin for PAx<Output<MODE>>where MODE: OutputMode,

source§

fn is_set_high(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the pin in drive high mode? Read more
source§

fn is_set_low(&self) -> bool

👎Deprecated since 0.2.2: Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Is the pin in drive low mode? Read more

Auto Trait Implementations§

§

impl<MODE> RefUnwindSafe for PAx<MODE>where MODE: RefUnwindSafe,

§

impl<MODE> Send for PAx<MODE>where MODE: Send,

§

impl<MODE> Sync for PAx<MODE>where MODE: Sync,

§

impl<MODE> Unpin for PAx<MODE>where MODE: Unpin,

§

impl<MODE> UnwindSafe for PAx<MODE>where MODE: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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> InputPin for Twhere T: InputPin,

§

type Error = ()

Error type
source§

fn is_low(&self) -> Result<bool, <T as InputPin>::Error>

Is the input pin low?
source§

fn is_high(&self) -> Result<bool, <T as InputPin>::Error>

Is the input pin high?
source§

impl<T, U> Into<U> for Twhere 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> OutputPin for Twhere T: OutputPin,

§

type Error = ()

Error type
source§

fn set_low(&mut self) -> Result<(), <T as OutputPin>::Error>

Drives the pin low Read more
source§

fn set_high(&mut self) -> Result<(), <T as OutputPin>::Error>

Drives the pin high 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<T> StatefulOutputPin for Twhere T: StatefulOutputPin + OutputPin,

source§

fn is_set_low(&self) -> Result<bool, <T as OutputPin>::Error>

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

fn is_set_high(&self) -> Result<bool, <T as OutputPin>::Error>

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

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.