Browse Source

Fix UBL 'G29 I' for large meshes (#19231)

ManuelMcLure 3 years ago
parent
commit
ab06d5c7fb
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

@@ -48,7 +48,7 @@
48 48
 
49 49
   void unified_bed_leveling::report_current_mesh() {
50 50
     if (!leveling_is_valid()) return;
51
-    SERIAL_ECHO_MSG("  G29 I99");
51
+    SERIAL_ECHO_MSG("  G29 I999");
52 52
     GRID_LOOP(x, y)
53 53
       if (!isnan(z_values[x][y])) {
54 54
         SERIAL_ECHO_START();

Loading…
Cancel
Save