boards: arm: Correct LED flags for XIAO board.

LEDs on the XIAO are active low, so set the flags appropriately.

Signed-off-by: Peter Johanson <peter@peterjohanson.com>
This commit is contained in:
Peter Johanson 2022-10-29 01:29:02 -04:00 committed by Fabio Baltieri
commit 4baf2eb751

View file

@ -24,15 +24,15 @@
leds {
compatible = "gpio-leds";
led: led_0 {
gpios = <&porta 17 0>;
gpios = <&porta 17 GPIO_ACTIVE_LOW>;
label = "LED";
};
rx_led: led_1 {
gpios = <&porta 18 0>;
gpios = <&porta 18 GPIO_ACTIVE_LOW>;
label = "RX_LED";
};
tx_led: led_2 {
gpios = <&porta 19 0>;
gpios = <&porta 19 GPIO_ACTIVE_LOW>;
label = "TX_LED";
};
};