Browse Source

Add back required precision for off printer mesh saves

Roxy-3D 6 years ago
parent
commit
cdf4ed87a1
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/bedlevel/ubl/ubl.cpp

+ 1
- 1
Marlin/src/feature/bedlevel/ubl/ubl.cpp View File

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

Loading…
Cancel
Save