0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-04-01 10:59:17 +00:00

🐛 Fix case TRRunaway

This commit is contained in:
Scott Lahteine 2023-08-04 23:49:38 -05:00
parent c088081c00
commit ad112b4d3d

View file

@ -3220,11 +3220,13 @@ void Temperature::init() {
case TRRunaway: case TRRunaway:
TERN_(HAS_DWIN_E3V2_BASIC, dwinPopupTemperature(0)); TERN_(HAS_DWIN_E3V2_BASIC, dwinPopupTemperature(0));
_TEMP_ERROR(heater_id, FPSTR(str_t_thermal_runaway), MSG_THERMAL_RUNAWAY, current); _TEMP_ERROR(heater_id, FPSTR(str_t_thermal_runaway), MSG_THERMAL_RUNAWAY, current);
break;
#if ENABLED(THERMAL_PROTECTION_VARIANCE_MONITOR) #if ENABLED(THERMAL_PROTECTION_VARIANCE_MONITOR)
case TRMalfunction: case TRMalfunction:
TERN_(HAS_DWIN_E3V2_BASIC, dwinPopupTemperature(0)); TERN_(HAS_DWIN_E3V2_BASIC, dwinPopupTemperature(0));
_TEMP_ERROR(heater_id, FPSTR(str_t_temp_malfunction), MSG_TEMP_MALFUNCTION, current); _TEMP_ERROR(heater_id, FPSTR(str_t_temp_malfunction), MSG_TEMP_MALFUNCTION, current);
break;
#endif #endif
} }
} }