|
@@ -1789,15 +1789,10 @@ static void clean_up_after_endstop_or_probe_move() {
|
1789
|
1789
|
SERIAL_ECHOLNPGM(" " MSG_FIRST);
|
1790
|
1790
|
|
1791
|
1791
|
#if ENABLED(ULTRA_LCD)
|
1792
|
|
- char message[3 * (LCD_WIDTH) + 1] = ""; // worst case is kana.utf with up to 3*LCD_WIDTH+1
|
1793
|
|
- strcat_P(message, PSTR(MSG_HOME " "));
|
1794
|
|
- if (xx) strcat_P(message, PSTR(MSG_X));
|
1795
|
|
- if (yy) strcat_P(message, PSTR(MSG_Y));
|
1796
|
|
- if (zz) strcat_P(message, PSTR(MSG_Z));
|
1797
|
|
- strcat_P(message, PSTR(" " MSG_FIRST));
|
1798
|
|
- lcd_setstatus(message);
|
|
1792
|
+ lcd_status_printf_P(0, PSTR(MSG_HOME " %s%s%s " MSG_FIRST), xx ? MSG_X : "", yy ? MSG_Y : "", zz ? MSG_Z : "");
|
1799
|
1793
|
#endif
|
1800
|
1794
|
return true;
|
|
1795
|
+
|
1801
|
1796
|
}
|
1802
|
1797
|
return false;
|
1803
|
1798
|
}
|
|
@@ -5153,7 +5148,6 @@ inline void gcode_M31() {
|
5153
|
5148
|
char buffer[21];
|
5154
|
5149
|
duration_t elapsed = print_job_timer.duration();
|
5155
|
5150
|
elapsed.toString(buffer);
|
5156
|
|
-
|
5157
|
5151
|
lcd_setstatus(buffer);
|
5158
|
5152
|
|
5159
|
5153
|
SERIAL_ECHO_START;
|
|
@@ -5700,7 +5694,7 @@ inline void gcode_M104() {
|
5700
|
5694
|
}
|
5701
|
5695
|
#endif
|
5702
|
5696
|
|
5703
|
|
- if (code_value_temp_abs() > thermalManager.degHotend(target_extruder)) status_printf(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
|
|
5697
|
+ if (code_value_temp_abs() > thermalManager.degHotend(target_extruder)) lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
|
5704
|
5698
|
}
|
5705
|
5699
|
|
5706
|
5700
|
#if ENABLED(AUTOTEMP)
|
|
@@ -5898,7 +5892,7 @@ inline void gcode_M109() {
|
5898
|
5892
|
else print_job_timer.start();
|
5899
|
5893
|
#endif
|
5900
|
5894
|
|
5901
|
|
- if (thermalManager.isHeatingHotend(target_extruder)) status_printf(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
|
|
5895
|
+ if (thermalManager.isHeatingHotend(target_extruder)) lcd_status_printf_P(0, PSTR("E%i %s"), target_extruder + 1, MSG_HEATING);
|
5902
|
5896
|
}
|
5903
|
5897
|
|
5904
|
5898
|
#if ENABLED(AUTOTEMP)
|