Fix underflow in steps per square second
This commit is contained in:
parent
55606f1bdc
commit
699a41290f
1 changed files with 2 additions and 2 deletions
|
|
@ -1199,8 +1199,8 @@ inline void linear_move(unsigned long axis_steps_remaining[]) // make linear mov
|
||||||
if (acceleration_enabled && steps_done == 0) {
|
if (acceleration_enabled && steps_done == 0) {
|
||||||
interval = max_interval;
|
interval = max_interval;
|
||||||
} else if (acceleration_enabled && steps_done <= plateau_steps) {
|
} else if (acceleration_enabled && steps_done <= plateau_steps) {
|
||||||
long current_speed = (long) ((((long) steps_per_sqr_second) / 10000)
|
long current_speed = (long) ((((long) steps_per_sqr_second) / 100)
|
||||||
* ((micros() - start_move_micros) / 100) + (long) min_speed_steps_per_second);
|
* ((micros() - start_move_micros) / 100)/100 + (long) min_speed_steps_per_second);
|
||||||
interval = 100000000 / current_speed;
|
interval = 100000000 / current_speed;
|
||||||
if (interval < full_interval) {
|
if (interval < full_interval) {
|
||||||
accelerating = false;
|
accelerating = false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue