Skip to content

Commit

Permalink
Fix planner.cpp compile (#16996)
Browse files Browse the repository at this point in the history
  • Loading branch information
mak0t0san authored Feb 27, 2020
1 parent a80eda4 commit 8164cac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Marlin/src/module/planner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2403,10 +2403,10 @@ bool Planner::_populate_block(block_t * const block, bool split_move,
LOOP_XYZE(i)
#endif
{
const float jerk = ABS(current_speed[i]); // cs : Starting from zero, change in speed for this axis
maxj = (max_jerk[axis] // mj : The max jerk setting for this axis
const float jerk = ABS(current_speed[i]), // cs : Starting from zero, change in speed for this axis
maxj = (max_jerk[i] // mj : The max jerk setting for this axis
#ifdef TRAVEL_EXTRA_XYJERK
+ (axis == X_AXIS || axis == Y_AXIS ? extra_xyjerk : 0)
+ (i == X_AXIS || i == Y_AXIS ? extra_xyjerk : 0)
#endif
);

Expand Down

0 comments on commit 8164cac

Please sign in to comment.