boards: rpi_pico: Fix LED active config.
The Pico LED is active high, so set that appropriately. Signed-off-by: Peter Johanson <peter@peterjohanson.com>
This commit is contained in:
parent
562e79780a
commit
747f1f8f53
|
@ -23,7 +23,7 @@
|
|||
leds {
|
||||
compatible = "gpio-leds";
|
||||
led0: led_0 {
|
||||
gpios = <&gpio0 25 GPIO_ACTIVE_LOW>;
|
||||
gpios = <&gpio0 25 GPIO_ACTIVE_HIGH>;
|
||||
label = "LED";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue