__HAL_GPIO_EXTI_GET_IT macro
Checks whether the specified EXTI line is asserted or not.
Syntax
#define __HAL_GPIO_EXTI_GET_IT(__EXTI_LINE__) (EXTI->PR & (__EXTI_LINE__)) Arguments
__EXTI_LINE__
specifies the EXTI line to check. This parameter can be GPIO_PIN_x where x can be(0..15)
Return value
The new state of __EXTI_LINE__ (SET or RESET).