|
@@ -2497,9 +2497,9 @@ bool Planner::_populate_block(block_t * const block, bool split_move,
|
2497
|
2497
|
previous_safe_speed = safe_speed;
|
2498
|
2498
|
|
2499
|
2499
|
#if HAS_JUNCTION_DEVIATION
|
2500
|
|
- vmax_junction_sqr = _MIN(vmax_junction_sqr, sq(vmax_junction));
|
|
2500
|
+ NOMORE(vmax_junction_sqr, sq(vmax_junction)); // Throttle down to max speed
|
2501
|
2501
|
#else
|
2502
|
|
- vmax_junction_sqr = sq(vmax_junction);
|
|
2502
|
+ vmax_junction_sqr = sq(vmax_junction); // Go up or down to the new speed
|
2503
|
2503
|
#endif
|
2504
|
2504
|
|
2505
|
2505
|
#endif // Classic Jerk Limiting
|