Question
Define error in stm32l4xx_hal_exti.h
Hi everybody,
I think I found a bug in stm32l4xx_hal_exti.h at the definition of the GPIO-ports:
- #define EXTI_GPIOA 0x00000000u
- #define EXTI_GPIOB 0x00000001u
- #define EXTI_GPIOC 0x00000002u
- #define EXTI_GPIOD 0x00000003u
- #define EXTI_GPIOE 0x00000004u
- #define EXTI_GPIOF 0x00000005u
- #define EXTI_GPIOG 0x00000005u
- #define EXTI_GPIOH 0x00000007u
- #define EXTI_GPIOI 0x00000008u
The definition for EXTI_GPIOG is wrong!!! When trying to activate EXTI for PortG you actually activate it for port F in SYSCFG->EXTICR.
Could you please fix this?
Best regards
Markus
