diff --git a/common/lp5562_battery_led.c b/common/lp5562_battery_led.c index 165bbc9eca..24da647b5e 100644 --- a/common/lp5562_battery_led.c +++ b/common/lp5562_battery_led.c @@ -260,7 +260,8 @@ static void battery_led_update(void) break; } - if (current && desired_current) + /* If battery doesn't want any current, it's considered full. */ + if (desired_current) state = LED_STATE_SOLID_YELLOW; else state = LED_STATE_SOLID_GREEN;