Browse Source

Allow the sampled point to be added into the Least Squares Best Fit (#7289)

Without this...  The LSF won't work because none of the sampled points
in this code block get added.
pull/1/head
Roxy-3D 7 years ago
committed by GitHub
parent
commit
37a6833d7e
  1. 2
      Marlin/Marlin_main.cpp

2
Marlin/Marlin_main.cpp

@ -4623,6 +4623,8 @@ void home_all_axes() { gcode_G28(true); }
eqnAMatrix[abl_probe_index + 1 * abl2] = yProbe;
eqnAMatrix[abl_probe_index + 2 * abl2] = 1;
incremental_LSF(&lsf_results, xProbe, yProbe, measured_z);
#elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
z_values[xCount][yCount] = measured_z + zoffset;

Loading…
Cancel
Save