Browse Source

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

vanilla_fb_2.0.x
ManuelMcLure 4 years ago
committed by GitHub
parent
commit
ab06d5c7fb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/feature/bedlevel/ubl/ubl.cpp

2
Marlin/src/feature/bedlevel/ubl/ubl.cpp

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

Loading…
Cancel
Save