2017-12-12 02:28 AM
Hello,
I am using a STM32F334.
Is it possible to configure a pin in Alternate Function Mode (Timer input Channel for my project) and to use at the same time the pin as an external interrupt source ?
It seems to work properly in my project but I am surprised it does and could not find any information on this case in the Reference Manual. Is it unrecommended to do it ?
According to Reference Manual, external interrupts are handled through EXTI and SYSCFG_EXTICRx registers while mode of GPIO pin is handled through GPIOx_MODER registers which are not related.
Thank you,
#pin-configurationSolved! Go to Solution.
2017-12-13 04:49 PM
EXTI works in parallel to all other functionalities of the pin (except perhaps when set to Analog).
This is not a very well documented detail indeed.
JW
2017-12-13 04:49 PM
EXTI works in parallel to all other functionalities of the pin (except perhaps when set to Analog).
This is not a very well documented detail indeed.
JW
2017-12-14 12:43 AM
Thank you for your answer Jan,
It confirms what I figured out.
Thibault