diff --git a/Software/src/devboard/safety/safety.cpp b/Software/src/devboard/safety/safety.cpp index 36137fba..a07d3fa9 100644 --- a/Software/src/devboard/safety/safety.cpp +++ b/Software/src/devboard/safety/safety.cpp @@ -26,7 +26,7 @@ void update_machineryprotection() { /* Check if the ESP32 CPU running the Battery-Emulator is too hot. We start with a warning, you can start to see Wifi issues if it becomes too hot If the chip starts to approach the design limit, we perform a graceful shutdown */ - if (datalayer.system.info.CPU_temperature > 80.0f) { + if (datalayer.system.info.CPU_temperature > 87.0f) { set_event(EVENT_CPU_OVERHEATING, 0); } else { clear_event(EVENT_CPU_OVERHEATING);