[][src]Struct stm32f1xx_hal::gpio::gpioe::PE13

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

Pin

Implementations

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

pub fn into_alternate_push_pull(self, cr: &mut CRH) -> PE13<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 CRH
) -> PE13<Alternate<OpenDrain>>
[src]

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

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

Configures the pin to operate as a floating input pin

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

Configures the pin to operate as a pulled down input pin

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

Configures the pin to operate as a pulled up input pin

pub fn into_open_drain_output(self, cr: &mut CRH) -> PE13<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 CRH,
    initial_state: State
) -> PE13<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 CRH) -> PE13<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 CRH,
    initial_state: State
) -> PE13<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 CRH) -> PE13<Analog>[src]

Configures the pin to operate as an analog input pin

pub fn into_dynamic(self, cr: &mut CRH) -> PE13<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> PE13<MODE> where
    MODE: Active,
    PE13<MODE>: PinMode<CRH>, 
[src]

pub fn as_push_pull_output(
    &mut self,
    cr: &mut CRH,
    f: impl FnMut(&mut PE13<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 CRH,
    state: State,
    f: impl FnMut(&mut PE13<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 CRH,
    f: impl FnMut(&mut PE13<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 CRH,
    state: State,
    f: impl FnMut(&mut PE13<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 CRH,
    f: impl FnMut(&mut PE13<Input<Floating>>)
)
[src]

Temporarily change the mode of the pin.

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

Temporarily change the mode of the pin.

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

Temporarily change the mode of the pin.

impl<MODE> PE13<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 PE13<Dynamic>[src]

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

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

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

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

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

Trait Implementations

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

impl<MODE> ExtiPin for PE13<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 PE13<Input<MODE>>[src]

type Error = Infallible

Error type

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

type Error = Infallible

Error type

impl InputPin for PE13<Dynamic>[src]

type Error = PinModeError

Error type

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

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

type Error = Infallible

Error type

impl OutputPin for PE13<Dynamic>[src]

type Error = PinModeError

Error type

impl<MODE> OutputSpeed<CRH> for PE13<Output<MODE>>[src]

impl OutputSpeed<CRH> for PE13<Alternate<PushPull>>[src]

impl PinMode<CRH> for PE13<Input<Floating>>[src]

impl PinMode<CRH> for PE13<Input<PullDown>>[src]

impl PinMode<CRH> for PE13<Input<PullUp>>[src]

impl PinMode<CRH> for PE13<Output<OpenDrain>>[src]

impl PinMode<CRH> for PE13<Output<PushPull>>[src]

impl PinMode<CRH> for PE13<Analog>[src]

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

Auto Trait Implementations

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

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

impl<MODE> Unpin for PE13<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, P3> Pins<REMAP, C3> for P3 where
    P3: Ch3<REMAP> + Mode<Alternate<PushPull>>,
    REMAP: Remap<Periph = TIM>, 
[src]

type Channels = PwmChannel<TIM, C3>

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.