-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Description
Hi.
I am doing a remap of M6 to run some Gcode to do a tool change. it was working for a while and now the first time it runs a G53 G1 move, it just gets stuck at that position and does not move. it does not happen every time.
I have done some troubleshooting and have some information below when it freezes
symptom: Motion deadlock with inpos=False despite all joints inpos=True
interp_state=2 (PAUSED), queue=6, distance_to_go=0
motion.feed-hold = false
motion.feed-inhibit = false
spindle.0.inhibit = false
motion.in-position = false
motion.motion-enabled = true
motion.coord-mode = true
joint.(1-4).in-position are all true
in python
all s.joint[i] 'inpos' = 1
s.interp_state = 2
s.state = 2
s.motion_mode = 2
s.inpos = false
s.queue = 6
s.distance_to_go = 0.0
s.paused = false
s.motion_line = 123
s.current_line = 131
s.read_line = 139
Thanks
Brent