mirror of https://github.com/commaai/openpilot.git
parent
86a1616de9
commit
9aa9d33f92
|
@ -244,9 +244,6 @@ def thermald_thread():
|
|||
msg.deviceState.batteryVoltage = HARDWARE.get_battery_voltage()
|
||||
msg.deviceState.usbOnline = HARDWARE.get_usb_present()
|
||||
|
||||
if EON and started_ts is None and msg.deviceState.memoryUsagePercent > 40:
|
||||
cloudlog.event("High offroad memory usage", mem=msg.deviceState.memoryUsagePercent)
|
||||
|
||||
# Fake battery levels on uno for frame
|
||||
if (not EON) or is_uno:
|
||||
msg.deviceState.batteryPercent = 100
|
||||
|
@ -408,6 +405,9 @@ def thermald_thread():
|
|||
|
||||
# report to server once every 10 minutes
|
||||
if (count % int(600. / DT_TRML)) == 0:
|
||||
if EON and started_ts is None and msg.deviceState.memoryUsagePercent > 40:
|
||||
cloudlog.event("High offroad memory usage", mem=msg.deviceState.memoryUsagePercent)
|
||||
|
||||
location = messaging.recv_sock(location_sock)
|
||||
cloudlog.event("STATUS_PACKET",
|
||||
count=count,
|
||||
|
|
Loading…
Reference in New Issue