clip carBatteryCapacity to 0

pull/2050/head
Adeeb Shihadeh 5 years ago
parent 266ef886dd
commit 2476ea213c
  1. 2
      selfdrive/thermald/thermald.py

@ -403,7 +403,7 @@ def thermald_thread():
# Offroad power monitoring # Offroad power monitoring
pm.calculate(health) pm.calculate(health)
msg.thermal.offroadPowerUsage = pm.get_power_used() msg.thermal.offroadPowerUsage = pm.get_power_used()
msg.thermal.carBatteryCapacity = pm.get_car_battery_capacity() msg.thermal.carBatteryCapacity = max(0, pm.get_car_battery_capacity())
# Check if we need to disable charging (handled by boardd) # Check if we need to disable charging (handled by boardd)
msg.thermal.chargingDisabled = pm.should_disable_charging(health, off_ts) msg.thermal.chargingDisabled = pm.should_disable_charging(health, off_ts)

Loading…
Cancel
Save