From 18a27c6b433da039ac2e2ba74695907f2b6bf211 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Thu, 8 Apr 2021 22:50:11 -0700 Subject: [PATCH] reduce STATUS_PACKET logging frequency to every 10 minutes old-commit-hash: 14295e9203224710d3b1013314a7be8c496db96c --- selfdrive/thermald/thermald.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfdrive/thermald/thermald.py b/selfdrive/thermald/thermald.py index 2285c5d0c7..8881a0a0b2 100755 --- a/selfdrive/thermald/thermald.py +++ b/selfdrive/thermald/thermald.py @@ -407,8 +407,8 @@ def thermald_thread(): should_start_prev = should_start startup_conditions_prev = startup_conditions.copy() - # report to server once per minute - if (count % int(60. / DT_TRML)) == 0: + # report to server once every 10 minutes + if (count % int(600. / DT_TRML)) == 0: location = messaging.recv_sock(location_sock) cloudlog.event("STATUS_PACKET", count=count,