Browse Source
Add back required precision for off printer mesh saves
pull/1/head
Roxy-3D
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Marlin/src/feature/bedlevel/ubl/ubl.cpp
|
|
@ -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
|
|
|
|
} |
|
|
|