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:
Peter Johanson 2022-02-12 22:02:43 -05:00 committed by Maureen Helm
parent 562e79780a
commit 747f1f8f53

View file

@ -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";
};
};