diff options
author | Anthony Amanse <ghieamanse@gmail.com> | 2021-05-30 21:20:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-31 00:20:46 -0400 |
commit | cdbfb3566245c47d0259303c09b89c81e3d722ee (patch) | |
tree | 5112aba9ef7a4034a8a1a95312a10b343836541f /app/boards | |
parent | 3f838f0aaf90cd5f8dad622fd1d901a9a8eb40d0 (diff) |
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 <ghieamanse@gmail.com>
Diffstat (limited to 'app/boards')
-rw-r--r-- | app/boards/arm/bluemicro840/bluemicro840_v1.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/boards/arm/bluemicro840/bluemicro840_v1.dts b/app/boards/arm/bluemicro840/bluemicro840_v1.dts index 31551f4..a3a5ba9 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"; }; }; |