2021-09-04 07:21 PM
I am using STM32H750 MCU . I configured 14 GPIO as interrupt and handle in HAL_GPIO_EXTI_Callback(uint16_t GPIO_Pin)
function. In few GPIO pin number is same and different port .(PA6 , PI6 and PJ6).
How to find proper interrupt PIN?
Solved! Go to Solution.
2021-09-04 09:06 PM
You cannot have multiple ports with the same pin number trigger an interrupt. For example, PA6 and PB6 cannot both be set to trigger an interrupt.
See SYSCFG_EXTICRx for the underlying hardware limitation.
2021-09-04 09:06 PM
You cannot have multiple ports with the same pin number trigger an interrupt. For example, PA6 and PB6 cannot both be set to trigger an interrupt.
See SYSCFG_EXTICRx for the underlying hardware limitation.