Browse Source

Fix G29 for updated meshCount type (#15960)

pull/1/head
Jason Smith 5 years ago
committed by Scott Lahteine
parent
commit
4ede13e36a
  1. 6
      Marlin/src/gcode/bedlevel/abl/G29.cpp

6
Marlin/src/gcode/bedlevel/abl/G29.cpp

@ -684,7 +684,7 @@ G29_TYPE GcodeSuite::G29() {
// Outer loop is Y with PROBE_Y_FIRST disabled
for (PR_OUTER_VAR = 0; PR_OUTER_VAR < PR_OUTER_END && !isnan(measured_z); PR_OUTER_VAR++) {
uint8_t inStart, inStop, inInc;
int8_t inStart, inStop, inInc;
if (zig) { // away from origin
inStart = 0;
@ -693,8 +693,8 @@ G29_TYPE GcodeSuite::G29() {
}
else { // towards origin
inStart = PR_INNER_END - 1;
inStop = 0xFF;
inInc = 0xFF;
inStop = -1;
inInc = -1;
}
zig ^= true; // zag

Loading…
Cancel
Save