Browse Source

Output (commented) coordinates on G29 S-1; helps identify the x/y points that correspond with i/j coordinates, which eases manual tweaking of z values (#6507)

bgort 7 years ago
parent
commit
5ace3699b1
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      Marlin/ubl_G29.cpp

+ 2
- 0
Marlin/ubl_G29.cpp View File

@@ -600,6 +600,8 @@
600 600
               SERIAL_ECHOPAIR(" J ", y);
601 601
               SERIAL_ECHOPGM(" Z ");
602 602
               SERIAL_ECHO_F(ubl.z_values[x][y], 6);
603
+              SERIAL_ECHOPAIR(" ; X ", LOGICAL_X_POSITION(pgm_read_float(&(ubl.mesh_index_to_xpos[x]))));
604
+              SERIAL_ECHOPAIR(", Y ", LOGICAL_Y_POSITION(pgm_read_float(&(ubl.mesh_index_to_ypos[y]))));
603 605
               SERIAL_EOL;
604 606
             }
605 607
         return;

Loading…
Cancel
Save