Merge pull request #6300 from MagoKimbra/rc_fix_mesh_report

Fix mbl_mesh_report
master
Scott Lahteine 7 years ago committed by GitHub
commit eff5af569b

@ -3769,7 +3769,7 @@ inline void gcode_G28() {
SERIAL_PROTOCOLPGM("Z offset: "); SERIAL_PROTOCOL_F(mbl.z_offset, 5);
SERIAL_PROTOCOLLNPGM("\nMeasured points:");
print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 5,
[](const uint8_t ix, const uint8_t iy) { return mbl.z_values[ix][iy]; }
[](const uint8_t ix, const uint8_t iy) { return mbl.z_values[iy][ix]; }
);
}

Loading…
Cancel
Save