Macros | |
#define | __HAL_GPIO_IT_GET_IT(__GPIOX__, __GPIO_PIN__) ll_gpio_read_flag_it(__GPIOX__, __GPIO_PIN__) |
Check whether the specified GPIO pin is asserted or not. More... | |
#define | __HAL_GPIO_IT_CLEAR_IT(__GPIOX__, __GPIO_PIN__) ll_gpio_clear_flag_it(__GPIOX__, __GPIO_PIN__) |
Clear the GPIO pin pending bits. More... | |
#define __HAL_GPIO_IT_CLEAR_IT | ( | __GPIOX__, | |
__GPIO_PIN__ | |||
) | ll_gpio_clear_flag_it(__GPIOX__, __GPIO_PIN__) |
Clear the GPIO pin pending bits.
__GPIOX__ | Where X can be (0, 1) to select the GPIO peripheral port |
__GPIO_PIN__ | Specifies the GPIO pins to clear. This parameter can be any combination of GPIO_PIN_x where x can be (0..15) |
None |
Definition at line 218 of file gr55xx_hal_gpio.h.
#define __HAL_GPIO_IT_GET_IT | ( | __GPIOX__, | |
__GPIO_PIN__ | |||
) | ll_gpio_read_flag_it(__GPIOX__, __GPIO_PIN__) |
Check whether the specified GPIO pin is asserted or not.
__GPIOX__ | Where X can be (0, 1) to select the GPIO peripheral port |
__GPIO_PIN__ | Specifies the GPIO pin to check. This parameter can be GPIO_PIN_x where x can be (0..15) |
The | new state of __GPIO_PIN__ (SET or RESET). |
Definition at line 209 of file gr55xx_hal_gpio.h.