itersolve: Rename calc_position to calc_position_cb

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2019-10-27 11:06:46 -04:00
parent 9945cc0f46
commit 92993c062b
8 changed files with 20 additions and 20 deletions

View File

@@ -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;
}