cell_voltage is no longer constant

This commit is contained in:
nanthony21
2018-02-10 11:42:22 -06:00
committed by Lorenz Meier
parent 9c7de38b75
commit 53b4f6406f
+1 -1
View File
@@ -173,7 +173,7 @@ Battery::estimateRemaining(float voltage_v, float current_a, float throttle_norm
// remaining battery capacity based on voltage
const float cell_voltage = voltage_v / _n_cells.get();
float cell_voltage = voltage_v / _n_cells.get();
// correct battery voltage locally for load drop to avoid estimation fluctuations
if (_r_internal.get() >= 0.f) {