|
@ -441,12 +441,6 @@ uint16_t max_display_update_time = 0; |
|
|
lcd_goto_screen(old_screen); |
|
|
lcd_goto_screen(old_screen); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
inline void lcd_wait_for_homing() { |
|
|
|
|
|
no_reentrance = true; |
|
|
|
|
|
while (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS] || !axis_homed[Z_AXIS]) idle(); |
|
|
|
|
|
no_reentrance = false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void lcd_return_to_status() { lcd_goto_screen(lcd_status_screen); } |
|
|
void lcd_return_to_status() { lcd_goto_screen(lcd_status_screen); } |
|
|
|
|
|
|
|
|
void lcd_save_previous_screen() { |
|
|
void lcd_save_previous_screen() { |
|
@ -1297,8 +1291,7 @@ KeepDrawing: |
|
|
LCDVIEW_CALL_NO_REDRAW |
|
|
LCDVIEW_CALL_NO_REDRAW |
|
|
#endif |
|
|
#endif |
|
|
; |
|
|
; |
|
|
if (no_reentrance) return; |
|
|
if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS]) |
|
|
lcd_wait_for_homing(); |
|
|
|
|
|
lcd_goto_screen(_lcd_level_bed_homing_done); |
|
|
lcd_goto_screen(_lcd_level_bed_homing_done); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|