Add back required precision for off printer mesh saves

This commit is contained in:
Roxy-3D 2019-07-06 21:01:56 -05:00 committed by GitHub
parent 8916acf083
commit cdf4ed87a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@
if (!isnan(z_values[x][y])) {
SERIAL_ECHO_START();
SERIAL_ECHOPAIR(" M421 I", x, " J", y);
SERIAL_ECHOPAIR_F(" Z", z_values[x][y], 2);
SERIAL_ECHOPAIR_F(" Z", z_values[x][y], 4);
SERIAL_EOL();
serial_delay(75); // Prevent Printrun from exploding
}