Correct the formula of battery capacity estimation.
am: c800ddc824
Change-Id: Idf0396fdac7e0cedbac39da98b2fe97e26dce64e
This commit is contained in:
committed by
android-build-merger
commit
d4d476943f
@@ -9596,7 +9596,7 @@ public class BatteryStatsImpl extends BatteryStats {
|
|||||||
resetAllStatsLocked();
|
resetAllStatsLocked();
|
||||||
if (chargeUAh > 0) {
|
if (chargeUAh > 0) {
|
||||||
// Only use the reported coulomb charge value if it is supported and reported.
|
// Only use the reported coulomb charge value if it is supported and reported.
|
||||||
mEstimatedBatteryCapacity = (int) ((level / 100.0) * (chargeUAh / 1000));
|
mEstimatedBatteryCapacity = (int) ((chargeUAh / 1000) / (level / 100.0));
|
||||||
}
|
}
|
||||||
mDischargeStartLevel = level;
|
mDischargeStartLevel = level;
|
||||||
reset = true;
|
reset = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user