Resolved! Enabling Same Interrupt Number on Separate Ports [STM32H7]
I understand that any external interrupt on PA13, PB13, PC13, PD14 .. or PI15 will all execute the same ISR:EXTI15_10_IRQHandler(void) { HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_13); } Which calls HAL_GPIO_EXTI_IRQHandler before finally calling th...