HAL + 0/2 examples
CodeScope will show references to LL_GPIO_InitTypeDef from the following samples and libraries:
Examples
STM32F411RE-Nucleo
Examples_LL
GPIO
PWR
 
Symbols
loading...
Files
loading...

LL_GPIO_InitTypeDef struct

LL GPIO Init Structure definition

Syntax

typedef struct {   uint32_t Pin;             uint32_t Mode;            uint32_t Speed;           uint32_t OutputType;      uint32_t Pull;            uint32_t Alternate;     } LL_GPIO_InitTypeDef;

Fields

Pin

Specifies the GPIO pins to be configured. This parameter can be any value of GPIO_LL_EC_PIN. Read more...

Mode

Specifies the operating mode for the selected pins. This parameter can be a value of GPIO_LL_EC_MODE. GPIO HW configuration can be modified afterwards using unitary function LL_GPIO_SetPinMode(). Read more...

Speed

Specifies the speed for the selected pins. This parameter can be a value of GPIO_LL_EC_SPEED. GPIO HW configuration can be modified afterwards using unitary function LL_GPIO_SetPinSpeed(). Read more...

OutputType

Specifies the operating output type for the selected pins. This parameter can be a value of GPIO_LL_EC_OUTPUT. GPIO HW configuration can be modified afterwards using unitary function LL_GPIO_SetPinOutputType(). Read more...

Pull

Specifies the operating Pull-up/Pull down for the selected pins. This parameter can be a value of GPIO_LL_EC_PULL. GPIO HW configuration can be modified afterwards using unitary function LL_GPIO_SetPinPull(). Read more...

Alternate

Specifies the Peripheral to be connected to the selected pins. This parameter can be a value of GPIO_LL_EC_AF. GPIO HW configuration can be modified afterwards using unitary function LL_GPIO_SetAFPin_0_7() and LL_GPIO_SetAFPin_8_15(). Read more...

Examples

LL_GPIO_InitTypeDef is referenced by 2 libraries and example projects.