2020-03-04 08:43 AM
Hi, I have a design where I have multiple GPIO interrupts and some share the same interrupt input line, for example EXTI10_15. How can I differentiate in the interrupt callback routine which GPIO triggered the interrupt aside from reading these GPIOs' input states?
Thanks,
Doug Burrell
Solved! Go to Solution.
2020-03-04 08:56 AM
They should flag individually, and OR together to generate the IRQ
Check EXTI->PR register (on F4 for example)
2020-03-04 08:55 AM
JW
2020-03-04 08:56 AM
They should flag individually, and OR together to generate the IRQ
Check EXTI->PR register (on F4 for example)
2020-03-04 09:04 AM
Thanks for the info! That's exactly what I was looking for.
2020-03-04 09:04 AM
Thanks, that's really helpful.