When an input pin set as GPIO is detected, a function program called "GROUP1_IRQHandler" will be executed if interrupt settings are made.
If I want to specify different interrupt destinations (other than GROUP1_IRQHandler) for PA14 and PA18, what kind of settings should I use and what kind of code should I write?
The specific content is
- If PA14 is input, execute "GROUP1_IRQHandler"
- If PA18 is input, I want to set and execute a program that is a different interrupt destination than "GROUP1_IRQHandler".
In conclusion, I would like to separate the interrupt destination programs between PA14 and PA18.