I'm having trouble getting continuous motion from my winding machine. When I run this snippet of code, the machine moves in discrete steps, coming to a complete stop after every line. This is making things terribly slow.
G91 (Relative positioning)
G1 A120 C1080 F10
G1 A120 C-1080 F10
G1 A120 C1080 F10
Curiously, when I add a linear axis, the machine behaves as I would expect. The A axis rotates continuously, without stopping.
G91 (Relative positioning)
G1 X1 A120 C1080 F10
G1 X1 A120 C-1080 F10
G1 X1 A120 C1080 F10
I've already tried adding a dummy "X0" command, but it doesn't help. What can I do?