Skip to content

Commit 61648a5

Browse files
committed
Fix alignement
1 parent cea9130 commit 61648a5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

targets/TARGET_STM/gpio_irq_api.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,7 @@ void gpio_irq_enable(gpio_irq_t *obj)
297297
LL_EXTI_EnableRisingTrig_0_31(1 << STM_PIN(obj->pin));
298298
}
299299
if (obj->event & IRQ_FALL) {
300-
LL_EXTI_EnableFallingTrig_0_31(1 << STM_PIN(obj->pin));
301-
300+
LL_EXTI_EnableFallingTrig_0_31(1 << STM_PIN(obj->pin));
302301
}
303302

304303
NVIC_EnableIRQ(obj->irq_n);

0 commit comments

Comments
 (0)