Skip to content

Commit 3afa8be

Browse files
committed
core: timer: add STM32U5xx EXTI IRQ
Signed-off-by: Frederic Pillon <[email protected]>
1 parent ede83a5 commit 3afa8be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/SrcWrapper/src/stm32/interrupt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static gpio_irq_conf_str gpio_irq_conf[NB_EXTI] = {
6969
{.irqnb = EXTI4_15_IRQn, .callback = NULL}, //GPIO_PIN_13
7070
{.irqnb = EXTI4_15_IRQn, .callback = NULL}, //GPIO_PIN_14
7171
{.irqnb = EXTI4_15_IRQn, .callback = NULL} //GPIO_PIN_15
72-
#elif defined (STM32MP1xx) || defined (STM32L5xx)
72+
#elif defined (STM32MP1xx) || defined (STM32L5xx) || defined (STM32U5xx)
7373
{.irqnb = EXTI0_IRQn, .callback = NULL}, //GPIO_PIN_0
7474
{.irqnb = EXTI1_IRQn, .callback = NULL}, //GPIO_PIN_1
7575
{.irqnb = EXTI2_IRQn, .callback = NULL}, //GPIO_PIN_2

0 commit comments

Comments
 (0)