|
@@ -97,7 +97,7 @@ static bool ensure_safe_temperature(const AdvancedPauseMode mode=ADVANCED_PAUSE_
|
97
|
97
|
#if ENABLED(PREVENT_COLD_EXTRUSION)
|
98
|
98
|
if (!DEBUGGING(DRYRUN) && thermalManager.targetTooColdToExtrude(active_extruder)) {
|
99
|
99
|
SERIAL_ERROR_START();
|
100
|
|
- SERIAL_ERRORLNPGM(MSG_HOTEND_TOO_COLD);
|
|
100
|
+ SERIAL_ERRORLNPGM(MSG_ERR_HOTEND_TOO_COLD);
|
101
|
101
|
return false;
|
102
|
102
|
}
|
103
|
103
|
#endif
|
|
@@ -349,7 +349,7 @@ bool pause_print(const float &retract, const point_t &park_point, const float &u
|
349
|
349
|
|
350
|
350
|
if (!DEBUGGING(DRYRUN) && unload_length && thermalManager.targetTooColdToExtrude(active_extruder)) {
|
351
|
351
|
SERIAL_ERROR_START();
|
352
|
|
- SERIAL_ERRORLNPGM(MSG_HOTEND_TOO_COLD);
|
|
352
|
+ SERIAL_ERRORLNPGM(MSG_ERR_HOTEND_TOO_COLD);
|
353
|
353
|
|
354
|
354
|
#if ENABLED(ULTIPANEL)
|
355
|
355
|
if (show_lcd) { // Show status screen
|