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>
This commit is contained in:
Siddharth Chandrasekaran 2020-09-13 20:38:09 +05:30 committed by Carles Cufí
commit 07756e5332
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
leds {
led: led {
gpios = <&gpiob 12 GPIO_ACTIVE_HIGH>;
gpios = <&gpiob 12 GPIO_ACTIVE_LOW>;
};
};
};

View file

@ -13,7 +13,7 @@
leds {
led: led {
gpios = <&gpioc 13 GPIO_ACTIVE_HIGH>;
gpios = <&gpioc 13 GPIO_ACTIVE_LOW>;
};
};
};