cancel
Showing results for 
Search instead for 
Did you mean: 

Confirmation on EXTI limitiation

sarun
Associate III

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.

1 ACCEPTED SOLUTION

Accepted Solutions
SofLit
ST Employee

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:

SofLit_0-1732872386323.png

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.

View solution in original post

3 REPLIES 3
STTwo-32
ST Employee

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.

SofLit
ST Employee

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:

SofLit_0-1732872386323.png

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.
sarun
Associate III

Thank you for the support  @SofLit  @STTwo-32