2019-04-16 08:15 AM
I'm using multiple external events through GPIO to wake the MCU from sleep. How can I check what source caused the event? Is there a register that I can read? What I understand is that the WFE instruction also clears the event register so I assume all traces of the event is lost?
2019-04-16 08:43 AM
EXTI events are not latched.
EXTI interrupts are latched in EXTI_PR. See the EXTI chapter in manual.
JW