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

This commit is contained in:
ManuelMcLure 2020-09-01 23:32:52 -07:00 committed by Scott Lahteine
parent edba363d54
commit c113984b32

View File

@ -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();