We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b197bf commit fa7d130Copy full SHA for fa7d130
Marlin/src/module/planner.cpp
@@ -2821,13 +2821,7 @@ bool Planner::_populate_block(
2821
}
2822
vmax_junction *= v_factor;
2823
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
+ vmax_junction_sqr = sq(vmax_junction);
2831
#endif // CLASSIC_JERK
2832
2833
// Max entry speed of this block equals the max exit speed of the previous block.
0 commit comments