Skip to content
Snippets Groups Projects
Commit 1b4031ed authored by Damien George's avatar Damien George
Browse files

stm32/extint: Use correct EXTI channels on H7 MCUs for RTC events.

parent 9e5768a6
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,9 @@
#if defined(STM32F0) || defined(STM32L4)
#define EXTI_RTC_TIMESTAMP (19)
#define EXTI_RTC_WAKEUP (20)
#elif defined(STM32H7)
#define EXTI_RTC_TIMESTAMP (18)
#define EXTI_RTC_WAKEUP (19)
#else
#define EXTI_RTC_TIMESTAMP (21)
#define EXTI_RTC_WAKEUP (22)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment