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