aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/chelper/kin_delta.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-10-27 11:06:46 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-11-06 15:51:51 -0500
commit92993c062b4c70e4e97cecdfb2b43b8c0bbef96c (patch)
tree3368e2ca0d637c4fedaca839bd208b89d0a9f7e0 /klippy/chelper/kin_delta.c
parent9945cc0f46b74e8f224c4fd421b36f59e4191905 (diff)
downloadkutter-92993c062b4c70e4e97cecdfb2b43b8c0bbef96c.tar.gz
kutter-92993c062b4c70e4e97cecdfb2b43b8c0bbef96c.tar.xz
kutter-92993c062b4c70e4e97cecdfb2b43b8c0bbef96c.zip
itersolve: Rename calc_position to calc_position_cb
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/kin_delta.c')
-rw-r--r--klippy/chelper/kin_delta.c2
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;
}