mirror of https://github.com/Desuuuu/klipper.git
itersolve: Improve numerical stability of gen_steps_pre_active check
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
04b3603a1e
commit
4cbbe18afd
|
@ -162,7 +162,8 @@ itersolve_generate_steps(struct stepper_kinematics *sk, double flush_time)
|
|||
if (end > flush_time)
|
||||
end = flush_time;
|
||||
if (check_active(sk, m)) {
|
||||
if (sk->gen_steps_pre_active && start > last_flush_time) {
|
||||
if (sk->gen_steps_pre_active
|
||||
&& start > last_flush_time + .000000001) {
|
||||
// Must generate steps leading up to stepper activity
|
||||
force_steps_time = start;
|
||||
if (last_flush_time < start - sk->gen_steps_pre_active)
|
||||
|
|
Loading…
Reference in New Issue