boards: stm32l562e_dk: Fix inverted GPIO flags for user LEDs

Fix the GPIO configurations for both user LEDs on the stm32l562e_dk
board that shall be active low.

Signed-off-by: Yestin Sun <sunyi0804@gmail.com>
This commit is contained in:
Yestin Sun 2020-12-08 22:07:30 -08:00 committed by Anas Nashif
commit 87ff1513fa

View file

@ -12,11 +12,11 @@
leds {
compatible = "gpio-leds";
red_led_9: led_9 {
gpios = <&gpiod 3 GPIO_ACTIVE_HIGH>;
gpios = <&gpiod 3 GPIO_ACTIVE_LOW>;
label = "User LD9";
};
green_led_10: led_10 {
gpios = <&gpiog 12 GPIO_ACTIVE_HIGH>;
gpios = <&gpiog 12 GPIO_ACTIVE_LOW>;
label = "User LD10";
};
};