aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/chelper/kin_corexy.c
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/chelper/kin_corexy.c')
-rw-r--r--klippy/chelper/kin_corexy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/chelper/kin_corexy.c b/klippy/chelper/kin_corexy.c
index a5a5022c..b1aba650 100644
--- a/klippy/chelper/kin_corexy.c
+++ b/klippy/chelper/kin_corexy.c
@@ -1,6 +1,6 @@
// CoreXY kinematics stepper pulse time generation
//
-// Copyright (C) 2018 Kevin O'Connor <kevin@koconnor.net>
+// Copyright (C) 2018-2019 Kevin O'Connor <kevin@koconnor.net>
//
// This file may be distributed under the terms of the GNU GPLv3 license.
@@ -35,5 +35,6 @@ corexy_stepper_alloc(char type)
sk->calc_position_cb = corexy_stepper_plus_calc_position;
else if (type == '-')
sk->calc_position_cb = corexy_stepper_minus_calc_position;
+ sk->active_flags = AF_X | AF_Y;
return sk;
}