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:
parent
aff31cf62b
commit
50dfb4fbf7
1 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue