We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 434d4dd commit 20546d0Copy full SHA for 20546d0
1 file changed
src/emc/motion/control.c
@@ -1471,6 +1471,11 @@ static void get_pos_cmds(long period)
1471
for (joint_num = 0; joint_num < ALL_JOINTS; joint_num++) {
1472
/* point to joint data */
1473
joint = &joints[joint_num];
1474
+
1475
+ /* Zero values */
1476
+ joint_limit[joint_num][0] = 0;
1477
+ joint_limit[joint_num][1] = 0;
1478
1479
/* skip inactive or unhomed axes */
1480
if ((!GET_JOINT_ACTIVE_FLAG(joint)) || (!get_homed(joint_num))) {
1481
continue;
0 commit comments