diff options
Diffstat (limited to 'klippy/chelper/kin_delta.c')
-rw-r--r-- | klippy/chelper/kin_delta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/chelper/kin_delta.c b/klippy/chelper/kin_delta.c index 91794be9..04509976 100644 --- a/klippy/chelper/kin_delta.c +++ b/klippy/chelper/kin_delta.c @@ -34,6 +34,6 @@ delta_stepper_alloc(double arm2, double tower_x, double tower_y) ds->arm2 = arm2; ds->tower_x = tower_x; ds->tower_y = tower_y; - ds->sk.calc_position = delta_stepper_calc_position; + ds->sk.calc_position_cb = delta_stepper_calc_position; return &ds->sk; } |