Fix_Zig_Zag
This commit is contained in:
parent
4d4c00d69c
commit
28d1e5a946
|
@ -3645,7 +3645,7 @@ inline void gcode_G28() {
|
||||||
|
|
||||||
for (int yCount = 0; yCount < auto_bed_leveling_grid_points; yCount++) {
|
for (int yCount = 0; yCount < auto_bed_leveling_grid_points; yCount++) {
|
||||||
float yBase = front_probe_bed_position + yGridSpacing * yCount,
|
float yBase = front_probe_bed_position + yGridSpacing * yCount,
|
||||||
yProbe = floor(yProbe + (yProbe < 0 ? 0 : 0.5));
|
yProbe = floor(yBase + (yBase < 0 ? 0 : 0.5));
|
||||||
int xStart, xStop, xInc;
|
int xStart, xStop, xInc;
|
||||||
|
|
||||||
if (zig) {
|
if (zig) {
|
||||||
|
@ -3663,7 +3663,7 @@ inline void gcode_G28() {
|
||||||
|
|
||||||
for (int xCount = xStart; xCount != xStop; xCount += xInc) {
|
for (int xCount = xStart; xCount != xStop; xCount += xInc) {
|
||||||
float xBase = left_probe_bed_position + xGridSpacing * xCount,
|
float xBase = left_probe_bed_position + xGridSpacing * xCount,
|
||||||
xProbe = floor(xProbe + (xProbe < 0 ? 0 : 0.5));
|
xProbe = floor(xBase + (xBase < 0 ? 0 : 0.5));
|
||||||
|
|
||||||
#if ENABLED(DELTA)
|
#if ENABLED(DELTA)
|
||||||
// Avoid probing outside the round or hexagonal area of a delta printer
|
// Avoid probing outside the round or hexagonal area of a delta printer
|
||||||
|
|
Loading…
Reference in a new issue