Skip to content

Commit

Permalink
fix penta axis kinematics
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndere1 committed Oct 1, 2024
1 parent bcb3052 commit 55cea19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Marlin/src/module/planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2985,13 +2985,14 @@ bool Planner::buffer_line(const xyze_pos_t &cart, const_feedRate_t fr_mm_s
if (!hints.millimeters)
ph.millimeters = get_move_distance(xyze_pos_t(cart_dist_mm) OPTARG(HAS_ROTATIONAL_AXES, ph.cartesian_move));

/**
#if ANY(PENTA_AXIS_TRT, PENTA_AXIS_HT)
if (NEAR_ZERO(cart_dist_mm.i) && TERN1(HAS_J_AXIS, NEAR_ZERO(cart_dist_mm.j))) {
delta += cart_dist_mm;
}
else
#endif

*/
// Cartesian XYZ to kinematic ABC, stored in global 'delta'
inverse_kinematics(machine);

Expand Down

0 comments on commit 55cea19

Please sign in to comment.