From d0e678e1d17ea68759b80a0519a1202b258b782f Mon Sep 17 00:00:00 2001
From: michalprusa <git@michalprusa.cz>
Date: Wed, 19 Oct 2016 11:58:15 +0200
Subject: [PATCH] HotFix - Calibrate XYZ and Calibrate Z now prints status
 messages of next step after confirming that both carriages are all the way
 up.

---
 Firmware/ultralcd.cpp | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp
index 2a4c5bb4..4e30736f 100644
--- a/Firmware/ultralcd.cpp
+++ b/Firmware/ultralcd.cpp
@@ -1501,6 +1501,19 @@ calibrated:
     // during the search for the induction points.
     current_position[Z_AXIS] = Z_MAX_POS-3.f;
     plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
+    
+    
+    if(only_z){
+        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);
+    }else{
+        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);
+    }
+    
+    
     return true;
 
 canceled: