|
@@ -352,7 +352,7 @@ static void lcd_implementation_status_screen() {
|
352
|
352
|
u8g.drawPixel(8, XYZ_BASELINE - 5);
|
353
|
353
|
u8g.drawPixel(8, XYZ_BASELINE - 3);
|
354
|
354
|
u8g.setPrintPos(10, XYZ_BASELINE);
|
355
|
|
- if (axis_known_position[X_AXIS] || (blink & 1))
|
|
355
|
+ if (axis_homed[X_AXIS] || (blink & 1))
|
356
|
356
|
lcd_print(ftostr31ns(current_position[X_AXIS]));
|
357
|
357
|
else
|
358
|
358
|
lcd_printPGM(PSTR("---"));
|
|
@@ -361,7 +361,7 @@ static void lcd_implementation_status_screen() {
|
361
|
361
|
u8g.drawPixel(49, XYZ_BASELINE - 5);
|
362
|
362
|
u8g.drawPixel(49, XYZ_BASELINE - 3);
|
363
|
363
|
u8g.setPrintPos(51, XYZ_BASELINE);
|
364
|
|
- if (axis_known_position[Y_AXIS] || (blink & 1))
|
|
364
|
+ if (axis_homed[Y_AXIS] || (blink & 1))
|
365
|
365
|
lcd_print(ftostr31ns(current_position[Y_AXIS]));
|
366
|
366
|
else
|
367
|
367
|
lcd_printPGM(PSTR("---"));
|
|
@@ -370,7 +370,7 @@ static void lcd_implementation_status_screen() {
|
370
|
370
|
u8g.drawPixel(89, XYZ_BASELINE - 5);
|
371
|
371
|
u8g.drawPixel(89, XYZ_BASELINE - 3);
|
372
|
372
|
u8g.setPrintPos(91, XYZ_BASELINE);
|
373
|
|
- if (axis_known_position[Z_AXIS] || (blink & 1))
|
|
373
|
+ if (axis_homed[Z_AXIS] || (blink & 1))
|
374
|
374
|
lcd_print(ftostr32sp(current_position[Z_AXIS]));
|
375
|
375
|
else
|
376
|
376
|
lcd_printPGM(PSTR("---.--"));
|