Fix an acceleration anomaly by making locals signed
This commit is contained in:
parent
df2d0eb37c
commit
e38baaa23e
@ -941,7 +941,7 @@ float junction_deviation = 0.1;
|
|||||||
|
|
||||||
// Compute and limit the acceleration rate for the trapezoid generator.
|
// Compute and limit the acceleration rate for the trapezoid generator.
|
||||||
float steps_per_mm = block->step_event_count / block->millimeters;
|
float steps_per_mm = block->step_event_count / block->millimeters;
|
||||||
unsigned long bsx = block->steps[X_AXIS], bsy = block->steps[Y_AXIS], bsz = block->steps[Z_AXIS], bse = block->steps[E_AXIS];
|
long bsx = block->steps[X_AXIS], bsy = block->steps[Y_AXIS], bsz = block->steps[Z_AXIS], bse = block->steps[E_AXIS];
|
||||||
if (bsx == 0 && bsy == 0 && bsz == 0) {
|
if (bsx == 0 && bsy == 0 && bsz == 0) {
|
||||||
block->acceleration_st = ceil(retract_acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
|
block->acceleration_st = ceil(retract_acceleration * steps_per_mm); // convert to: acceleration steps/sec^2
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user