2025-08-30 2:32 AM
Hello, I am using the STM32F407VGT6 microcontroller for a project involving GPIO interrupts, but the interrupt is not triggering reliably. Despite configuring the interrupt settings, it occasionally works, but other times it misses the edge completely.
Here’s my setup:
I’ve attached the STM32F407VGT6 Datasheet for this model if that helps in troubleshooting.
Has anyone experienced similar issues with the STM32F407VGT6? Any tips on debugging or configuration would be appreciated.
Thanks in advance for your help!
2025-08-30 2:58 AM
Hi,
Probably the problem is in your software,
Because INT on rising edge will always trigger, except you suppress it in your software.
So just try using the INT without any added debouncing or whatever,
And check it's working fine.
Then look for the error in your software.