Interrupts with same function

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

 When there are multiple interrupts performing the same function, for example 2 UARTs which are trying to wake up the device, it is not necessary that you connect two interrupts. You can just gang the pins together and provide a common isr to the ganged pins. 

   

In the isr if you can check out which pin caused the interrupt and find out the corresponding UART wake up source.

   

If you have unused pins then this can serve as better .

0 Likes
1 Reply
kemic_264446
Level 4
Level 4
First like received

 Nice 🙂

0 Likes