From 34d3ed9ab1bded9538ccc7fdc6f8e937226d32bc Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Sat, 8 Apr 2017 15:18:27 -0500 Subject: [PATCH] These items were removed from the UBL Command Parsing Having these items randomly (and errorniously) disappear cost me several hours of work yesterday. --- Marlin/ubl_G29.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Marlin/ubl_G29.cpp b/Marlin/ubl_G29.cpp index 88be4d495..9e0cc80af 100644 --- a/Marlin/ubl_G29.cpp +++ b/Marlin/ubl_G29.cpp @@ -1001,6 +1001,12 @@ lcd_quick_feedback(); #endif + x_pos = current_position[X_AXIS]; + y_pos = current_position[Y_AXIS]; + x_flag = 0; + y_flag = 0; + repeat_flag = 0; + g29_verbose_level = code_seen('V') ? code_value_int() : 0; if (!WITHIN(g29_verbose_level, 0, 4)) { SERIAL_PROTOCOLLNPGM("Invalid Verbose Level specified. (0-4)\n");