Skip to content

Commit 093bf3e

Browse files
committed
chore(U0): add GPIO EXTI support
Signed-off-by: Frederic Pillon <[email protected]>
1 parent df3748a commit 093bf3e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libraries/SrcWrapper/src/stm32/interrupt.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ typedef struct {
5353

5454
/* Private Variables */
5555
static gpio_irq_conf_str gpio_irq_conf[NB_EXTI] = {
56-
#if defined (STM32C0xx) || defined (STM32F0xx) || defined (STM32G0xx) || defined (STM32L0xx)
56+
#if defined (STM32C0xx) || defined (STM32F0xx) || defined (STM32G0xx) ||\
57+
defined (STM32L0xx) || defined (STM32U0xx)
5758
{.irqnb = EXTI0_1_IRQn, .callback = NULL}, //GPIO_PIN_0
5859
{.irqnb = EXTI0_1_IRQn, .callback = NULL}, //GPIO_PIN_1
5960
{.irqnb = EXTI2_3_IRQn, .callback = NULL}, //GPIO_PIN_2

0 commit comments

Comments
 (0)