ramips: assign LEDs for RAVPower RP-WD03

According to the User Manual, there is a "Wi-Fi LED" with blue and
green colors, doing the following by default:

  Flashing Blue: System loading
  Solid Blue: System loaded
  Flashing Green: Connecting to the Internet
  Solid Green: Connected to the Internet

According to this vendor behavior, we keep refer to the LED as "wifi"
but implement the according default behavior as in OEM firmware.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
Adrian Schmutzler
2020-09-11 18:01:19 +02:00
parent 77825f3cfe
commit 3fc7860961
2 changed files with 9 additions and 2 deletions

View File

@@ -11,6 +11,10 @@
aliases {
label-mac-device = &ethernet;
led-boot = &led_wifi_blue;
led-failsafe = &led_wifi_blue;
led-running = &led_wifi_blue;
led-upgrade = &led_wifi_blue;
};
chosen {
@@ -20,12 +24,12 @@
leds {
compatible = "gpio-leds";
green-wifi {
wifi_green {
label = "rp-wd03:green:wifi";
gpios = <&gpio2 0 GPIO_ACTIVE_HIGH>;
};
blue-wifi {
led_wifi_blue: wifi_blue {
label = "rp-wd03:blue:wifi";
gpios = <&gpio3 0 GPIO_ACTIVE_HIGH>;
};