zephyr/boards/arm/stm32_min_dev/stm32_min_dev_blue.dts
Siddharth Chandrasekaran 07756e5332 board: stm32_min_dev: Fix LED0 connection inversion
The on-board LED of the blue and black variants of these boards have LED
logic inverted. This was never observed as most of the time, the LED was
used as a blinky. Fix this by setting its DT bindings to active low.

Signed-off-by: Siddharth Chandrasekaran <siddharth@embedjournal.com>
2020-09-21 13:06:58 +02:00

20 lines
317 B
Plaintext

/*
* Copyright (c) 2017, embedjournal.com
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include "stm32_min_dev.dtsi"
/ {
model = "STM32 Minimum Development Board (Blue)";
compatible = "st,stm32_min_dev_blue", "st,stm32f103c8";
leds {
led: led {
gpios = <&gpioc 13 GPIO_ACTIVE_LOW>;
};
};
};