More precision in M503 output for MBL's M421

This commit is contained in:
Scott Lahteine 2016-05-14 16:19:37 -07:00
parent 1b90682617
commit a3520b6f01

View File

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