[][src]Struct stm32f1xx_hal::gpio::gpioa::PA3

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

Pin

Implementations

impl<MODE> PA3<MODE> where
    MODE: Active
[src]

pub fn into_alternate_push_pull(self, cr: &mut CRL) -> PA3<Alternate<PushPull>>[src]

Configures the pin to operate as an alternate function push-pull output pin.

pub fn into_alternate_open_drain(
    self,
    cr: &mut CRL
) -> PA3<Alternate<OpenDrain>>
[src]

Configures the pin to operate as an alternate function open-drain output pin.

pub fn into_floating_input(self, cr: &mut CRL) -> PA3<Input<Floating>>[src]

Configures the pin to operate as a floating input pin

pub fn into_pull_down_input(self, cr: &mut CRL) -> PA3<Input<PullDown>>[src]

Configures the pin to operate as a pulled down input pin

pub fn into_pull_up_input(self, cr: &mut CRL) -> PA3<Input<PullUp>>[src]

Configures the pin to operate as a pulled up input pin

pub fn into_open_drain_output(self, cr: &mut CRL) -> PA3<Output<OpenDrain>>[src]

Configures the pin to operate as an open-drain output pin. Initial state will be low.

pub fn into_open_drain_output_with_state(
    self,
    cr: &mut CRL,
    initial_state: State
) -> PA3<Output<OpenDrain>>
[src]

Configures the pin to operate as an open-drain output pin. initial_state specifies whether the pin should be initially high or low.

pub fn into_push_pull_output(self, cr: &mut CRL) -> PA3<Output<PushPull>>[src]

Configures the pin to operate as an push-pull output pin. Initial state will be low.

pub fn into_push_pull_output_with_state(
    self,
    cr: &mut CRL,
    initial_state: State
) -> PA3<Output<PushPull>>
[src]

Configures the pin to operate as an push-pull output pin. initial_state specifies whether the pin should be initially high or low.

pub fn into_analog(self, cr: &mut CRL) -> PA3<Analog>[src]

Configures the pin to operate as an analog input pin

pub fn into_dynamic(self, cr: &mut CRL) -> PA3<Dynamic>[src]

Configures the pin as a pin that can change between input and output without changing the type. It starts out as a floating input

impl<MODE> PA3<MODE> where
    MODE: Active,
    PA3<MODE>: PinMode<CRL>, 
[src]

pub fn as_push_pull_output(
    &mut self,
    cr: &mut CRL,
    f: impl FnMut(&mut PA3<Output<PushPull>>)
)
[src]

Temporarily change the mode of the pin.

The value of the pin after conversion is undefined. If you want to control it, use $stateful_fn_name

pub fn as_push_pull_output_with_state(
    &mut self,
    cr: &mut CRL,
    state: State,
    f: impl FnMut(&mut PA3<Output<PushPull>>)
)
[src]

Temporarily change the mode of the pin.

Note that the new state is set slightly before conversion happens. This can cause a short output glitch if switching between output modes

pub fn as_open_drain_output(
    &mut self,
    cr: &mut CRL,
    f: impl FnMut(&mut PA3<Output<OpenDrain>>)
)
[src]

Temporarily change the mode of the pin.

The value of the pin after conversion is undefined. If you want to control it, use $stateful_fn_name

pub fn as_open_drain_output_with_state(
    &mut self,
    cr: &mut CRL,
    state: State,
    f: impl FnMut(&mut PA3<Output<OpenDrain>>)
)
[src]

Temporarily change the mode of the pin.

Note that the new state is set slightly before conversion happens. This can cause a short output glitch if switching between output modes

pub fn as_floating_input(
    &mut self,
    cr: &mut CRL,
    f: impl FnMut(&mut PA3<Input<Floating>>)
)
[src]

Temporarily change the mode of the pin.

pub fn as_pull_up_input(
    &mut self,
    cr: &mut CRL,
    f: impl FnMut(&mut PA3<Input<PullUp>>)
)
[src]

Temporarily change the mode of the pin.

pub fn as_pull_down_input(
    &mut self,
    cr: &mut CRL,
    f: impl FnMut(&mut PA3<Input<PullDown>>)
)
[src]

Temporarily change the mode of the pin.

impl<MODE> PA3<MODE> where
    MODE: Active
[src]

pub fn downgrade(self) -> Pxx<MODE>[src]

Erases the pin number and port from the type

This is useful when you want to collect the pins into an array where you need all the elements to have the same type

impl PA3<Dynamic>[src]

pub fn make_pull_up_input(&mut self, cr: &mut CRL)[src]

pub fn make_pull_down_input(&mut self, cr: &mut CRL)[src]

pub fn make_floating_input(&mut self, cr: &mut CRL)[src]

pub fn make_push_pull_output(&mut self, cr: &mut CRL)[src]

pub fn make_open_drain_output(&mut self, cr: &mut CRL)[src]

Trait Implementations

impl Channel<ADC1> for PA3<Analog>[src]

type ID = u8

Channel ID type Read more

impl Channel<ADC2> for PA3<Analog>[src]

type ID = u8

Channel ID type Read more

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

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

fn make_interrupt_source(&mut self, afio: &mut Parts)[src]

Configure EXTI Line $i to trigger from this pin.

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

Generate interrupt on rising edge, falling edge or both

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

Enable external interrupts from this pin.

fn disable_interrupt(&mut self, exti: &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(&mut self) -> bool[src]

Reads the interrupt pending bit for this pin

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

type Error = Infallible

Error type

impl InputPin for PA3<Output<OpenDrain>>[src]

type Error = Infallible

Error type

impl InputPin for PA3<Dynamic>[src]

type Error = PinModeError

Error type

impl<MODE> Mode<MODE> for PA3<MODE>[src]

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

type Error = Infallible

Error type

impl OutputPin for PA3<Dynamic>[src]

type Error = PinModeError

Error type

impl<MODE> OutputSpeed<CRL> for PA3<Output<MODE>>[src]

impl OutputSpeed<CRL> for PA3<Alternate<PushPull>>[src]

impl PinMode<CRL> for PA3<Input<Floating>>[src]

impl PinMode<CRL> for PA3<Input<PullDown>>[src]

impl PinMode<CRL> for PA3<Input<PullUp>>[src]

impl PinMode<CRL> for PA3<Output<OpenDrain>>[src]

impl PinMode<CRL> for PA3<Output<PushPull>>[src]

impl PinMode<CRL> for PA3<Analog>[src]

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

Auto Trait Implementations

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

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

impl<MODE> Unpin for PA3<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> InputPin for T where
    T: InputPin
[src]

type Error = ()

Error type

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

impl<T> OutputPin for T where
    T: OutputPin
[src]

type Error = ()

Error type

impl<TIM, REMAP, P4> Pins<REMAP, C4> for P4 where
    P4: Ch4<REMAP> + Mode<Alternate<PushPull>>,
    REMAP: Remap<Periph = TIM>, 
[src]

type Channels = PwmChannel<TIM, C4>

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> StatefulOutputPin for T where
    T: StatefulOutputPin + OutputPin
[src]

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

type Error = <P as OutputPin>::Error

Error type

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.