Run Mesa 7i76e + 7i85 with 3 servos and 1 stepper motor
- MarcusM
- Topic Author
- Offline
- Junior Member
- Posts: 25
- Thank you received: 2
I changed the width to 18 and the offset to 47. Seems to work. I'll keep an eye on it while doing the remaining tasks.
What do you think about my M13 macro? I have no better idea as piping jog commands to move carousel a certain number of pockets.
Please Log in or Create an account to join the conversation.
- MarcusM
- Topic Author
- Offline
- Junior Member
- Posts: 25
- Thank you received: 2
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
- Posts: 23178
- Thank you received: 4868
error "Unknown word where unary operation could be". As it works in the simulation
I imagine it works in the sim because the system goes down a different path.
This is a problem with the actual G-code routine.
Did it give a line number? Have you attached the file somewhere (I can't look back in the thread inside this stupid editor)
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
- Posts: 23178
- Thank you received: 4868
What is the M13 macro for?What do you think about my M13 macro? I have no better idea as piping jog commands to move carousel a certain number of pockets.
Please Log in or Create an account to join the conversation.
- MarcusM
- Topic Author
- Offline
- Junior Member
- Posts: 25
- Thank you received: 2
The M13 macro is for homing/referencing the carousel. Please find enclosed the latest version
What is the M13 macro for?
Please Log in or Create an account to join the conversation.
- MarcusM
- Topic Author
- Offline
- Junior Member
- Posts: 25
- Thank you received: 2
The macro which causes the error is quite short:
Did it give a line number? Have you attached the file somewhere (I can't look back in the thread inside this stupid editor)
(author: Chris P)
(version: 0.1)
(date: 02/8/20)
;
; last edit 250322/mm
;
(debug, o<store_tool_in_carousel>)
o<store_tool_in_carousel> sub
G49
T0 M6
o<store_tool_in_carousel> endsub
M2 (end program)
Obviously, the call T0 causes the error.
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
- Posts: 23178
- Thank you received: 4868
The M13 macro is for homing/referencing the carousel. Please find enclosed the latest version
I don't understand why you can't use the built-in homing in the carousel component?
Please Log in or Create an account to join the conversation.
- MarcusM
- Topic Author
- Offline
- Junior Member
- Posts: 25
- Thank you received: 2
Please Log in or Create an account to join the conversation.
- andypugh
- Offline
- Moderator
- Posts: 23178
- Thank you received: 4868
There is this: github.com/LinuxCNC/linuxcnc/blob/master...hange/toolchange.ngc
But that is different, and does the whole sequence.
I suspect that you have found a G-code routine that the carousel component is designed to completely replace....
Please Log in or Create an account to join the conversation.
- MarcusM
- Topic Author
- Offline
- Junior Member
- Posts: 25
- Thank you received: 2
So github.com/LinuxCNC/linuxcnc/blob/master...hange/toolchange.ngc is the correct source and I can sattle up on that?
Please Log in or Create an account to join the conversation.