Struct stm32f1xx_hal::gpio::Pin

source ·
pub struct Pin<const P: char, const N: u8, MODE = Input<Floating>> { /* private fields */ }
Expand description

Generic pin type

  • P is port name: A for GPIOA, B for GPIOB, etc.
  • N is pin number: from 0 to 15.
  • MODE is one of the pin modes (see Modes section).

Implementations§

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

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

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

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

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

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

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

Erases the pin number from the type

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

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

Configures the pin to operate as a floating input pin

Configures the pin to operate as a pulled down input pin

Configures the pin to operate as a pulled up input pin

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

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

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

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

Configures the pin to operate as an analog input pin

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

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

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

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

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

Temporarily change the mode of the pin.

Temporarily change the mode of the pin.

Temporarily change the mode of the pin.

Trait Implementations§

Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Configuration register associated to pin
Error type
Is the input pin high?
Is the input pin low?
Error type
Is the input pin high?
Is the input pin low?
Error type
Is the input pin high?
Is the input pin low?
Error type
Drives the pin high Read more
Drives the pin low Read more
Drives the pin high or low depending on the provided value Read more
Error type
Drives the pin high Read more
Drives the pin low Read more
Drives the pin high or low depending on the provided value Read more
Return pin number
Return port number
Is the pin in drive high mode? Read more
Is the pin in drive low mode? Read more
Error type
Toggle pin output.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.