Skip to content

Commit

Permalink
fix bad switch fallthrough that's making CoreXY use H-Bot kinematics
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatWileyGuy committed May 8, 2017
1 parent 62ed2c6 commit 3cae2bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions redeem/path_planner/PathPlanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ void PathPlanner::queueMove(VectorN endWorldPos,
endPos[1] = endMotionPos[1];
assert(endPos[2] == endMotionPos[2]);
endPos[2] = endMotionPos[2];
break;
}
case AXIS_CONFIG_H_BELT:
{
Expand All @@ -173,6 +174,7 @@ void PathPlanner::queueMove(VectorN endWorldPos,
endPos[1] = endMotionPos[1];
assert(endPos[2] == endMotionPos[2]);
endPos[2] = endMotionPos[2];
break;
}
case AXIS_CONFIG_XY:
break;
Expand Down

0 comments on commit 3cae2bd

Please sign in to comment.