Commit 4199738d authored by MagoKimbra's avatar MagoKimbra

Fix

parent 5ee63302
...@@ -93,7 +93,7 @@ static volatile char endstop_hit_bits = 0; // use X_MIN, Y_MIN, Z_MIN and Z_PROB ...@@ -93,7 +93,7 @@ static volatile char endstop_hit_bits = 0; // use X_MIN, Y_MIN, Z_MIN and Z_PROB
#else #else
static byte static byte
#endif #endif
old_endstop_bits = 0; // use X_MIN, X_MAX... Z_MAX, Z_PROBE, Z2_MIN, Z2_MAX, E_MIN old_endstop_bits = 0; // use X_MIN, X_MAX... Z_MAX, Z_PROBE, Z2_MIN, Z2_MAX, E_MIN
#if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED) #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
bool abort_on_endstop_hit = false; bool abort_on_endstop_hit = false;
......
...@@ -76,8 +76,6 @@ static void lcd_status_screen(); ...@@ -76,8 +76,6 @@ static void lcd_status_screen();
static void lcd_main_menu(); static void lcd_main_menu();
static void lcd_tune_menu(); static void lcd_tune_menu();
static void lcd_prepare_menu(); static void lcd_prepare_menu();
static void lcd_prepare_motion_menu();
static void lcd_prepare_temperature_menu();
static void lcd_move_menu(); static void lcd_move_menu();
static void lcd_control_menu(); static void lcd_control_menu();
static void lcd_stats_menu(); static void lcd_stats_menu();
...@@ -2467,7 +2465,7 @@ char* ftostr52(const float& x) { ...@@ -2467,7 +2465,7 @@ char* ftostr52(const float& x) {
LCD_Printpos(0, 1); lcd_printPGM(PSTR(" ")); LCD_Printpos(0, 1); lcd_printPGM(PSTR(" "));
delay(5000); delay(5000);
enqueuecommands_P(PSTR("G28")); enqueuecommands_P(PSTR("G28"));
lcd_goto_menu(lcd_prepare_motion_menu); lcd_goto_menu(lcd_prepare_menu);
} }
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment