Original project changes: Vehicle - Fix RestartCellTemperatures to resize the correct vector

This commit is contained in:
Carsten Schmiemann 2022-11-01 14:11:31 +01:00
parent dab42140b8
commit a95e6e4fa2
1 changed files with 3 additions and 3 deletions

View File

@ -365,7 +365,7 @@ void OvmsVehicle::BmsRestartCellVoltages()
void OvmsVehicle::BmsRestartCellTemperatures()
{
m_bms_bitset_t.clear();
m_bms_bitset_v.resize(m_bms_readings_t);
m_bms_bitset_t.resize(m_bms_readings_t);
m_bms_bitset_ct = 0;
}