|
@@ -441,12 +441,6 @@ uint16_t max_display_update_time = 0;
|
441
|
441
|
lcd_goto_screen(old_screen);
|
442
|
442
|
}
|
443
|
443
|
|
444
|
|
- inline void lcd_wait_for_homing() {
|
445
|
|
- no_reentrance = true;
|
446
|
|
- while (!axis_homed[X_AXIS] || !axis_homed[Y_AXIS] || !axis_homed[Z_AXIS]) idle();
|
447
|
|
- no_reentrance = false;
|
448
|
|
- }
|
449
|
|
-
|
450
|
444
|
void lcd_return_to_status() { lcd_goto_screen(lcd_status_screen); }
|
451
|
445
|
|
452
|
446
|
void lcd_save_previous_screen() {
|
|
@@ -1297,9 +1291,8 @@ KeepDrawing:
|
1297
|
1291
|
LCDVIEW_CALL_NO_REDRAW
|
1298
|
1292
|
#endif
|
1299
|
1293
|
;
|
1300
|
|
- if (no_reentrance) return;
|
1301
|
|
- lcd_wait_for_homing();
|
1302
|
|
- lcd_goto_screen(_lcd_level_bed_homing_done);
|
|
1294
|
+ if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
|
|
1295
|
+ lcd_goto_screen(_lcd_level_bed_homing_done);
|
1303
|
1296
|
}
|
1304
|
1297
|
|
1305
|
1298
|
/**
|