Struct stm32f407g_disc::gpio::gpioc::PC[][src]

pub struct PC<MODE> { /* fields omitted */ }

Partially erased pin

Implementations

impl<MODE> PC<MODE>[src]

pub fn get_id(&self) -> u8[src]

Trait Implementations

impl<MODE> Default for PC<Output<MODE>>[src]

impl<MODE> ExtiPin for PC<Output<MODE>>[src]

pub fn make_interrupt_source(&mut self, syscfg: &mut SysCfg)[src]

Make corresponding EXTI line sensitive to this pin

pub fn trigger_on_edge(&mut self, exti: &mut EXTI, edge: Edge)[src]

Generate interrupt on rising edge, falling edge or both

pub fn enable_interrupt(&mut self, exti: &mut EXTI)[src]

Enable external interrupts from this pin.

pub fn disable_interrupt(&mut self, exti: &mut EXTI)[src]

Disable external interrupts from this pin

pub fn clear_interrupt_pending_bit(&mut self)[src]

Clear the interrupt pending bit for this pin

pub fn check_interrupt(&self) -> bool[src]

Reads the interrupt pending bit for this pin

impl<MODE> ExtiPin for PC<Input<MODE>>[src]

pub fn make_interrupt_source(&mut self, syscfg: &mut SysCfg)[src]

Make corresponding EXTI line sensitive to this pin

pub fn trigger_on_edge(&mut self, exti: &mut EXTI, edge: Edge)[src]

Generate interrupt on rising edge, falling edge or both

pub fn enable_interrupt(&mut self, exti: &mut EXTI)[src]

Enable external interrupts from this pin.

pub fn disable_interrupt(&mut self, exti: &mut EXTI)[src]

Disable external interrupts from this pin

pub fn clear_interrupt_pending_bit(&mut self)[src]

Clear the interrupt pending bit for this pin

pub fn check_interrupt(&self) -> bool[src]

Reads the interrupt pending bit for this pin

impl<MODE> InputPin for PC<Output<MODE>>[src]

type Error = Infallible

Error type

impl<MODE> InputPin for PC<Input<MODE>>[src]

type Error = Infallible

Error type

impl<MODE> OutputPin for PC<Output<MODE>>[src]

type Error = Infallible

Error type

impl<MODE> StatefulOutputPin for PC<Output<MODE>>[src]

Auto Trait Implementations

impl<MODE> Send for PC<MODE> where
    MODE: Send

impl<MODE> Sync for PC<MODE> where
    MODE: Sync

impl<MODE> Unpin for PC<MODE> where
    MODE: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<P> ToggleableOutputPin for P where
    P: Default
[src]

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]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.