Struct stm32f4xx_hal::gpio::gpioa::PA [−][src]
Partially erased pin
Implementations
impl<MODE> PA<MODE>
[src]
Trait Implementations
impl<MODE> Default for PA<Output<MODE>>
[src]
impl<MODE> ExtiPin for PA<Output<MODE>>
[src]
fn make_interrupt_source(&mut self, syscfg: &mut SysCfg)
[src]
Make corresponding EXTI line sensitive to this pin
fn trigger_on_edge(&mut self, exti: &mut EXTI, edge: Edge)
[src]
Generate interrupt on rising edge, falling edge or both
fn enable_interrupt(&mut self, exti: &mut EXTI)
[src]
Enable external interrupts from this pin.
fn disable_interrupt(&mut self, exti: &mut EXTI)
[src]
Disable external interrupts from this pin
fn clear_interrupt_pending_bit(&mut self)
[src]
Clear the interrupt pending bit for this pin
fn check_interrupt(&self) -> bool
[src]
Reads the interrupt pending bit for this pin
impl<MODE> ExtiPin for PA<Input<MODE>>
[src]
fn make_interrupt_source(&mut self, syscfg: &mut SysCfg)
[src]
Make corresponding EXTI line sensitive to this pin
fn trigger_on_edge(&mut self, exti: &mut EXTI, edge: Edge)
[src]
Generate interrupt on rising edge, falling edge or both
fn enable_interrupt(&mut self, exti: &mut EXTI)
[src]
Enable external interrupts from this pin.
fn disable_interrupt(&mut self, exti: &mut EXTI)
[src]
Disable external interrupts from this pin
fn clear_interrupt_pending_bit(&mut self)
[src]
Clear the interrupt pending bit for this pin
fn check_interrupt(&self) -> bool
[src]
Reads the interrupt pending bit for this pin
impl<MODE> InputPin for PA<Output<MODE>>
[src]
type Error = Infallible
Error type
fn is_high(&self) -> Result<bool, Self::Error>
[src]
fn is_low(&self) -> Result<bool, Self::Error>
[src]
impl<MODE> InputPin for PA<Input<MODE>>
[src]
type Error = Infallible
Error type
fn is_high(&self) -> Result<bool, Self::Error>
[src]
fn is_low(&self) -> Result<bool, Self::Error>
[src]
impl<MODE> OutputPin for PA<Output<MODE>>
[src]
type Error = Infallible
Error type
fn set_high(&mut self) -> Result<(), Self::Error>
[src]
fn set_low(&mut self) -> Result<(), Self::Error>
[src]
impl<MODE> StatefulOutputPin for PA<Output<MODE>>
[src]
fn is_set_high(&self) -> Result<bool, Self::Error>
[src]
fn is_set_low(&self) -> Result<bool, Self::Error>
[src]
Auto Trait Implementations
impl<MODE> Send for PA<MODE> where
MODE: Send,
MODE: Send,
impl<MODE> Sync for PA<MODE> where
MODE: Sync,
MODE: Sync,
impl<MODE> Unpin for PA<MODE> where
MODE: Unpin,
MODE: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<P> ToggleableOutputPin for P where
P: Default,
[src]
P: Default,
type Error = <P as OutputPin>::Error
Error type
pub fn toggle(&mut self) -> Result<(), <P as ToggleableOutputPin>::Error>
[src]
Toggle pin output
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,