From c0fee0b735481b34c2f85a40ce30dfc3e0af775c Mon Sep 17 00:00:00 2001 From: Ruben Dashyan Date: Thu, 10 Jan 2019 16:58:23 +0100 Subject: [PATCH] [ion/f730/battery] WIP: Temporary dummy Charge::FULL level --- ion/src/f730/battery.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ion/src/f730/battery.cpp b/ion/src/f730/battery.cpp index f3ed16364..212ab7214 100644 --- a/ion/src/f730/battery.cpp +++ b/ion/src/f730/battery.cpp @@ -18,6 +18,7 @@ bool isCharging() { } Charge level() { + return Charge::FULL; if (voltage() < 3.2f) { return Charge::EMPTY; }