|
@@ -3403,10 +3403,13 @@ void process_commands()
|
|
|
// Let the user move the Z axes up to the end stoppers.
|
|
|
if (lcd_calibrate_z_end_stop_manual( onlyZ )) {
|
|
|
refresh_cmd_timeout();
|
|
|
- if (((degHotend(0)>MAX_HOTEND_TEMP_CALIBRATION) || (degBed() > MAX_BED_TEMP_CALIBRATION))&& (!onlyZ)) lcd_wait_for_cool_down();
|
|
|
- lcd_display_message_fullscreen_P(MSG_MEASURE_BED_REFERENCE_HEIGHT_LINE1);
|
|
|
- lcd_implementation_print_at(0, 3, 1);
|
|
|
- lcd_printPGM(MSG_MEASURE_BED_REFERENCE_HEIGHT_LINE2);
|
|
|
+ if (((degHotend(0) > MAX_HOTEND_TEMP_CALIBRATION) || (degBed() > MAX_BED_TEMP_CALIBRATION)) && (!onlyZ)) {
|
|
|
+ lcd_wait_for_cool_down();
|
|
|
+ lcd_show_fullscreen_message_and_wait_P(MSG_PAPER);
|
|
|
+ lcd_display_message_fullscreen_P(MSG_FIND_BED_OFFSET_AND_SKEW_LINE1);
|
|
|
+ lcd_implementation_print_at(0, 2, 1);
|
|
|
+ lcd_printPGM(MSG_FIND_BED_OFFSET_AND_SKEW_LINE2);
|
|
|
+ }
|
|
|
|
|
|
// Move the print head close to the bed.
|
|
|
current_position[Z_AXIS] = MESH_HOME_Z_SEARCH;
|