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:
parent
6264788f6d
commit
87ff1513fa
1 changed files with 2 additions and 2 deletions
|
@ -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";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue