From 8119810cf505f6737fd41e94809a270de1e114ba Mon Sep 17 00:00:00 2001 From: Dado Mista Date: Mon, 15 Apr 2024 07:05:52 -0700 Subject: [PATCH] fixtypo --- utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility.cpp b/utility.cpp index bd876fdd2..79c7dd825 100755 --- a/utility.cpp +++ b/utility.cpp @@ -556,7 +556,7 @@ QString Utility::detectAllFoc(VescInterface *vesc, case -100 + FAULT_CODE_DRV: reason = "DRV fault, hardware fault occured. Check there are no shorts"; break; case -100 + FAULT_CODE_ABS_OVER_CURRENT: reason = "Overcurrent fault, Check there are no shorts and ABS Overcurrent limit is sensible"; break; case -100 + FAULT_CODE_OVER_TEMP_FET: reason = "Mosfet Overtemperature fault, Mosfets overheated, check for shorts. Cool down device"; break; - case -100 + FAULT_CODE_OVER_TEMP_MOTOR: reason = "Motor Overtemperature fault, Motor overheaded, is the current limit OK?"; break; + case -100 + FAULT_CODE_OVER_TEMP_MOTOR: reason = "Motor Overtemperature fault, Motor overheated, is the current limit OK?"; break; case -100 + FAULT_CODE_GATE_DRIVER_OVER_VOLTAGE: reason = "Gate Driver over voltage, check for hardware failure"; break; case -100 + FAULT_CODE_GATE_DRIVER_UNDER_VOLTAGE: reason = "Gate Driver under voltage, check for hardware failure"; break; case -100 + FAULT_CODE_MCU_UNDER_VOLTAGE: reason = "MCU under voltage, check for hardware failure, shorts on outputs"; break;