2024-11-28 08:33 PM - last edited on 2024-11-29 01:34 AM by SofLit
I want to confirm the limitations of GPIO interrupts on STM32 devices.
I am using an STM32H7 device, and observed that interrupts cannot be configured for PA0 and PB0 at the same time. I could not find any confirmation regarding this in the device datasheet,can anyone give me the confirmation on this.
Solved! Go to Solution.
2024-11-29 01:27 AM - edited 2024-11-29 02:31 AM
Hello @sarun ,
If you refer to the reference manual / SYSCFG_EXTICR[n] register, you find that only one IO on x position could be configured as EXTI input at a time:
2024-11-28 09:24 PM
Hello @sarun
PA0 and PB0 and so on, are connected to Line0, so you can use only one pin at one time to handle interrupt from there.
Best Regards.
STTwo-32
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2024-11-29 01:27 AM - edited 2024-11-29 02:31 AM
Hello @sarun ,
If you refer to the reference manual / SYSCFG_EXTICR[n] register, you find that only one IO on x position could be configured as EXTI input at a time:
2024-11-29 02:30 AM