mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-17 07:12:08 +08:00
clip carBatteryCapacity to 0
old-commit-hash: 2476ea213c24dac16531c8798761e34f96e0ded2
This commit is contained in:
@@ -403,7 +403,7 @@ def thermald_thread():
|
||||
# Offroad power monitoring
|
||||
pm.calculate(health)
|
||||
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)
|
||||
msg.thermal.chargingDisabled = pm.should_disable_charging(health, off_ts)
|
||||
|
||||
Reference in New Issue
Block a user