mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 04:35:20 +00:00
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>
20 lines
317 B
Plaintext
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>;
|
|
};
|
|
};
|
|
};
|