Browse Source

More precision in M503 output for MBL's M421

Scott Lahteine 8 years ago
parent
commit
a3520b6f01
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/configuration_store.cpp

+ 2
- 1
Marlin/configuration_store.cpp View File

@@ -738,7 +738,8 @@ void Config_PrintSettings(bool forReplay) {
738 738
         CONFIG_ECHO_START;
739 739
         SERIAL_ECHOPAIR("  M421 X", mbl.get_x(x));
740 740
         SERIAL_ECHOPAIR(" Y", mbl.get_y(y));
741
-        SERIAL_ECHOPAIR(" Z", mbl.z_values[y][x]);
741
+        SERIAL_ECHOPGM(" Z");
742
+        SERIAL_PROTOCOL_F(mbl.z_values[y][x], 5);
742 743
         SERIAL_EOL;
743 744
       }
744 745
     }

Loading…
Cancel
Save