boards: silabs: siwx917_dk2605a: fix LED polarity
Fix incorrect LED polarity definitions for the SiWx917 DK. The user LEDs on the SiWx917 DK are wired as active-low according to the board schematic, but were previously defined as GPIO_ACTIVE_HIGH. Update the devicetree LED gpio definitions to GPIO_ACTIVE_LOW so LED behavior matches the hardware and sample applications behave as expected. Signed-off-by: Christopher Hofmeister <chofmeister@gopresto.com>
This commit is contained in:
committed by
Fabio Baltieri
parent
6d7b8b6b2d
commit
a893e1dccf
@@ -39,17 +39,17 @@
|
||||
compatible = "gpio-leds";
|
||||
|
||||
led0: led_0 {
|
||||
gpios = <&gpioa 15 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpioa 15 GPIO_ACTIVE_LOW>;
|
||||
label = "LED0";
|
||||
};
|
||||
|
||||
led1: led_1 {
|
||||
gpios = <&gpiod 2 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpiod 2 GPIO_ACTIVE_LOW>;
|
||||
label = "LED1";
|
||||
};
|
||||
|
||||
led2: led_2 {
|
||||
gpios = <&gpiod 3 GPIO_ACTIVE_HIGH>;
|
||||
gpios = <&gpiod 3 GPIO_ACTIVE_LOW>;
|
||||
label = "LED2";
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user