Add comments to G29
This commit is contained in:
parent
0550f30790
commit
98f83dc756
@ -674,15 +674,15 @@ G29_TYPE GcodeSuite::G29() {
|
|||||||
|
|
||||||
int8_t inStart, inStop, inInc;
|
int8_t inStart, inStop, inInc;
|
||||||
|
|
||||||
if (zig) { // away from origin
|
if (zig) { // Zig away from origin
|
||||||
inStart = 0;
|
inStart = 0; // Left or front
|
||||||
inStop = PR_INNER_END;
|
inStop = PR_INNER_END; // Right or back
|
||||||
inInc = 1;
|
inInc = 1; // Zig right
|
||||||
}
|
}
|
||||||
else { // towards origin
|
else { // Zag towards origin
|
||||||
inStart = PR_INNER_END - 1;
|
inStart = PR_INNER_END - 1; // Right or back
|
||||||
inStop = -1;
|
inStop = -1; // Left or front
|
||||||
inInc = -1;
|
inInc = -1; // Zag left
|
||||||
}
|
}
|
||||||
|
|
||||||
zig ^= true; // zag
|
zig ^= true; // zag
|
||||||
|
Loading…
Reference in New Issue
Block a user