mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-05 00:05:59 +08:00
rate limit offroad mem logging
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user