boards: arm: Fix led active state on the lpcxpresso55s69

Happily corrected the incorrect active state of the on-board LEDs.

Signed-off-by: Jason Martin <jason.martin1@nxp.com>
This commit is contained in:
Jason Martin 2022-02-23 20:07:46 -06:00 committed by Maureen Helm
commit 50dfb4fbf7

View file

@ -16,17 +16,17 @@
leds {
compatible = "gpio-leds";
green_led: led_1 {
gpios = <&gpio1 7 0>;
gpios = <&gpio1 7 GPIO_ACTIVE_LOW>;
label = "User LD2";
status = "disabled";
};
blue_led: led_2 {
gpios = <&gpio1 4 0>;
gpios = <&gpio1 4 GPIO_ACTIVE_LOW>;
label = "User LD3";
status = "disabled";
};
red_led: led_3 {
gpios = <&gpio1 6 0>;
gpios = <&gpio1 6 GPIO_ACTIVE_LOW>;
label = "User LD4";
status = "disabled";
};