Skip to content

Commit 5d2513f

Browse files
committed
core(interrupt): add STM32H5xx EXTI IRQ support
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent de3e487 commit 5d2513f

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
@@ -70,7 +70,7 @@ static gpio_irq_conf_str gpio_irq_conf[NB_EXTI] = {
7070
{.irqnb = EXTI4_15_IRQn, .callback = NULL}, //GPIO_PIN_13
7171
{.irqnb = EXTI4_15_IRQn, .callback = NULL}, //GPIO_PIN_14
7272
{.irqnb = EXTI4_15_IRQn, .callback = NULL} //GPIO_PIN_15
73-
#elif defined (STM32MP1xx) || defined (STM32L5xx) || defined (STM32U5xx)
73+
#elif defined (STM32H5xx) || defined (STM32MP1xx) || defined (STM32L5xx) || defined (STM32U5xx)
7474
{.irqnb = EXTI0_IRQn, .callback = NULL}, //GPIO_PIN_0
7575
{.irqnb = EXTI1_IRQn, .callback = NULL}, //GPIO_PIN_1
7676
{.irqnb = EXTI2_IRQn, .callback = NULL}, //GPIO_PIN_2

0 commit comments

Comments
 (0)