Skip to content

Commit

Permalink
Merge pull request #322 from bdring/CoreXY_HomingFix
Browse files Browse the repository at this point in the history
Update CoreXY.cpp
  • Loading branch information
bdring authored Feb 26, 2022
2 parents d94b015 + cccae86 commit 4376a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FluidNC/src/Kinematics/CoreXY.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ namespace Kinematics {
}

if (cycle_mask != 0) {
if (bitnum_is_true(cycle_mask, X_AXIS) || bitnum_is_true(cycle_mask, X_AXIS)) {
if (bitnum_is_true(cycle_mask, X_AXIS) || bitnum_is_true(cycle_mask, Y_AXIS)) {
log_error("CoreXY cannot single axis home X or Y axes");
// TODO: Set some Kinematics error or alarm
return true;
Expand Down

0 comments on commit 4376a8a

Please sign in to comment.