From cdbfb3566245c47d0259303c09b89c81e3d722ee Mon Sep 17 00:00:00 2001 From: Anthony Amanse Date: Sun, 30 May 2021 21:20:46 -0700 Subject: [PATCH] fix(boards): Fix Blue LED pin definition in BlueMicro840 This commit fixes the pin definition for BlueMicro840. Based on the schematics, the blue led is at pin 1.10. Signed-off-by: Anthony Amanse --- app/boards/arm/bluemicro840/bluemicro840_v1.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/boards/arm/bluemicro840/bluemicro840_v1.dts b/app/boards/arm/bluemicro840/bluemicro840_v1.dts index 31551f4f..a3a5ba99 100644 --- a/app/boards/arm/bluemicro840/bluemicro840_v1.dts +++ b/app/boards/arm/bluemicro840/bluemicro840_v1.dts @@ -21,7 +21,7 @@ leds { compatible = "gpio-leds"; blue_led: led_0 { - gpios = <&gpio0 42 GPIO_ACTIVE_HIGH>; + gpios = <&gpio1 10 GPIO_ACTIVE_HIGH>; label = "Blue LED"; }; };