Are EXTI flag bits sticky?
I have an EXTI interrupt with a shared handler, EXTI15_10_IRQHandlerNormally there should be only pin 15 interrupt.So I did this:void EXTI15_10_IRQHandler(void) { if ((EXTI_D1->PR1 & (1<<15)) != 0) { my_handler(); EXTI_D1->PR1 = ...