Merge pull request #3606 from thinkyhead/rc_step_sec_comments
Patch steps rate comment in trapezoid function
This commit is contained in:
commit
735f1f5bfa
@ -180,8 +180,8 @@ FORCE_INLINE float intersection_distance(float initial_rate, float final_rate, f
|
|||||||
// Calculates trapezoid parameters so that the entry- and exit-speed is compensated by the provided factors.
|
// Calculates trapezoid parameters so that the entry- and exit-speed is compensated by the provided factors.
|
||||||
|
|
||||||
void calculate_trapezoid_for_block(block_t* block, float entry_factor, float exit_factor) {
|
void calculate_trapezoid_for_block(block_t* block, float entry_factor, float exit_factor) {
|
||||||
unsigned long initial_rate = ceil(block->nominal_rate * entry_factor); // (step/min)
|
unsigned long initial_rate = ceil(block->nominal_rate * entry_factor),
|
||||||
unsigned long final_rate = ceil(block->nominal_rate * exit_factor); // (step/min)
|
final_rate = ceil(block->nominal_rate * exit_factor); // (steps per second)
|
||||||
|
|
||||||
// Limit minimal step rate (Otherwise the timer will overflow.)
|
// Limit minimal step rate (Otherwise the timer will overflow.)
|
||||||
NOLESS(initial_rate, 120);
|
NOLESS(initial_rate, 120);
|
||||||
|
Loading…
Reference in New Issue
Block a user