From cc73376f75b0d6b4afa42becb9896ceb571bb4f4 Mon Sep 17 00:00:00 2001 From: James <91348155+FrogAi@users.noreply.github.com> Date: Mon, 1 Dec 2025 12:00:00 -0700 Subject: [PATCH] Increase Temperature Limits --- system/hardware/hardwared.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/hardware/hardwared.py b/system/hardware/hardwared.py index 564f90d8..b2d6a58a 100644 --- a/system/hardware/hardwared.py +++ b/system/hardware/hardwared.py @@ -301,6 +301,8 @@ def hardware_thread(end_event, hw_queue) -> None: msg.deviceState.fanSpeedPercentDesired = fan_controller.update(all_comp_temp, onroad_conditions["ignition"]) # FrogPilot variables + if frogpilot_toggles.increase_thermal_limits: + all_comp_temp -= (THERMAL_BANDS[ThermalStatus.danger].min_temp - THERMAL_BANDS[ThermalStatus.red].min_temp) is_offroad_for_5_min = (started_ts is None) and ((not started_seen) or (off_ts is None) or (time.monotonic() - off_ts > 60 * 5)) if is_offroad_for_5_min and offroad_comp_temp > OFFROAD_DANGER_TEMP: