Fix UBL 'G29 I' for large meshes (#19231)
This commit is contained in:
		@@ -48,7 +48,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  void unified_bed_leveling::report_current_mesh() {
 | 
					  void unified_bed_leveling::report_current_mesh() {
 | 
				
			||||||
    if (!leveling_is_valid()) return;
 | 
					    if (!leveling_is_valid()) return;
 | 
				
			||||||
    SERIAL_ECHO_MSG("  G29 I99");
 | 
					    SERIAL_ECHO_MSG("  G29 I999");
 | 
				
			||||||
    GRID_LOOP(x, y)
 | 
					    GRID_LOOP(x, y)
 | 
				
			||||||
      if (!isnan(z_values[x][y])) {
 | 
					      if (!isnan(z_values[x][y])) {
 | 
				
			||||||
        SERIAL_ECHO_START();
 | 
					        SERIAL_ECHO_START();
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user