Skip to content

Commit ad112b4

Browse files
committed
🐛 Fix case TRRunaway
1 parent c088081 commit ad112b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Marlin/src/module/temperature.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -3220,11 +3220,13 @@ void Temperature::init() {
32203220
case TRRunaway:
32213221
TERN_(HAS_DWIN_E3V2_BASIC, dwinPopupTemperature(0));
32223222
_TEMP_ERROR(heater_id, FPSTR(str_t_thermal_runaway), MSG_THERMAL_RUNAWAY, current);
3223+
break;
32233224

32243225
#if ENABLED(THERMAL_PROTECTION_VARIANCE_MONITOR)
32253226
case TRMalfunction:
32263227
TERN_(HAS_DWIN_E3V2_BASIC, dwinPopupTemperature(0));
32273228
_TEMP_ERROR(heater_id, FPSTR(str_t_temp_malfunction), MSG_TEMP_MALFUNCTION, current);
3229+
break;
32283230
#endif
32293231
}
32303232
}

0 commit comments

Comments
 (0)