Browse Source

Merge pull request #3124 from jbrazio/bugfix/update-g29-auto-level-bed-topography

Update the bed topography output done by G29
Scott Lahteine 8 years ago
parent
commit
3f5fbbd398
1 changed files with 10 additions and 5 deletions
  1. 10
    5
      Marlin/Marlin_main.cpp

+ 10
- 5
Marlin/Marlin_main.cpp View File

@@ -3041,11 +3041,16 @@ inline void gcode_G28() {
3041 3041
         if (do_topography_map) {
3042 3042
 
3043 3043
           SERIAL_PROTOCOLPGM(" \nBed Height Topography: \n");
3044
-          SERIAL_PROTOCOLPGM("+-----------+\n");
3045
-          SERIAL_PROTOCOLPGM("|...Back....|\n");
3046
-          SERIAL_PROTOCOLPGM("|Left..Right|\n");
3047
-          SERIAL_PROTOCOLPGM("|...Front...|\n");
3048
-          SERIAL_PROTOCOLPGM("+-----------+\n");
3044
+          SERIAL_PROTOCOLPGM("   +--- BACK --+\n");
3045
+          SERIAL_PROTOCOLPGM("   |           |\n");
3046
+          SERIAL_PROTOCOLPGM(" L |    (+)    | R\n");
3047
+          SERIAL_PROTOCOLPGM(" E |           | I\n");
3048
+          SERIAL_PROTOCOLPGM(" F | (-) N (+) | G\n");
3049
+          SERIAL_PROTOCOLPGM(" T |           | H\n");
3050
+          SERIAL_PROTOCOLPGM("   |    (-)    | T\n");
3051
+          SERIAL_PROTOCOLPGM("   |           |\n");
3052
+          SERIAL_PROTOCOLPGM("   O-- FRONT --+\n");
3053
+          SERIAL_PROTOCOLPGM(" (0,0)\n");
3049 3054
 
3050 3055
           float min_diff = 999;
3051 3056
 

Loading…
Cancel
Save