Skip to content

Commit fa7d130

Browse files
committed
More no JD with CJ.
1 parent 1b197bf commit fa7d130

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Marlin/src/module/planner.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2821,13 +2821,7 @@ bool Planner::_populate_block(
28212821
}
28222822
vmax_junction *= v_factor;
28232823
}
2824-
2825-
#if HAS_JUNCTION_DEVIATION
2826-
NOMORE(vmax_junction_sqr, sq(vmax_junction)); // Throttle down to max speed
2827-
#else
2828-
vmax_junction_sqr = sq(vmax_junction); // Go up or down to the new speed
2829-
#endif
2830-
2824+
vmax_junction_sqr = sq(vmax_junction);
28312825
#endif // CLASSIC_JERK
28322826

28332827
// Max entry speed of this block equals the max exit speed of the previous block.

0 commit comments

Comments
 (0)