STM32F4xx_HAL_Driver
1.8.3
|
Initialization and Configuration functions. More...
Functions | |
void | HAL_GPIO_Init (GPIO_TypeDef *GPIOx, GPIO_InitTypeDef *GPIO_Init) |
Initializes the GPIOx peripheral according to the specified parameters in the GPIO_Init. More... | |
void | HAL_GPIO_DeInit (GPIO_TypeDef *GPIOx, uint32_t GPIO_Pin) |
De-initializes the GPIOx peripheral registers to their default reset values. More... | |
Initialization and Configuration functions.
=============================================================================== ##### Initialization and de-initialization functions ##### =============================================================================== [..] This section provides functions allowing to initialize and de-initialize the GPIOs to be ready for use.
void HAL_GPIO_DeInit | ( | GPIO_TypeDef * | GPIOx, |
uint32_t | GPIO_Pin | ||
) |
De-initializes the GPIOx peripheral registers to their default reset values.
GPIOx | where x can be (A..K) to select the GPIO peripheral for STM32F429X device or x can be (A..I) to select the GPIO peripheral for STM32F40XX and STM32F427X devices. |
GPIO_Pin | specifies the port bit to be written. This parameter can be one of GPIO_PIN_x where x can be (0..15). |
None |
Definition at line 294 of file stm32f4xx_hal_gpio.c.
void HAL_GPIO_Init | ( | GPIO_TypeDef * | GPIOx, |
GPIO_InitTypeDef * | GPIO_Init | ||
) |
Initializes the GPIOx peripheral according to the specified parameters in the GPIO_Init.
GPIOx | where x can be (A..K) to select the GPIO peripheral for STM32F429X device or x can be (A..I) to select the GPIO peripheral for STM32F40XX and STM32F427X devices. |
GPIO_Init | pointer to a GPIO_InitTypeDef structure that contains the configuration information for the specified GPIO peripheral. |
None |
Definition at line 164 of file stm32f4xx_hal_gpio.c.