Boxford 125 lathe Tool Changer Comp FERROR (SOLVED)
However, I have a concern regarding the angle of rotation for the turret.
I read that not all indexes are 45 deg because some tools are square shank and others are round ??
Strange. My turret index wheel is evenly machined with 8 sections at 45 degrees. I've measured these and it is correct. The tool positions are machined in appropriately at these index positions to compensate this (Which is normal for any CNC turret)
Did the turret design change at some point over the years?
Would it be as simple as altering the rotation values in .comp for 45 each ?
Please Log in or Create an account to join the conversation.
param rw float odd_move = 43 "distance from odd tool station to even one";
param rw float even_move = 47 "distance from even tool station to odd one";
to this:
param rw float odd_move = 45 "distance from odd tool station to even one";
param rw float even_move = 45 "distance from even tool station to odd one";
might do the trick.
Please Log in or Create an account to join the conversation.
That's what I was thinking. I'll give a try when I get it setup.
Thanks !!
Please Log in or Create an account to join the conversation.
Would this be possible?
Please Log in or Create an account to join the conversation.
Apart from the obvious, how do I know if the compile has done it's job? Is there somewhere I can look to see if files have changed or been added?
Please Log in or Create an account to join the conversation.
I don't think there is much to see in the ini file regarding the toolchanger. With the component the toolchanger is no longer an axis/joint. I think the ini can be found somewhere in the earlier pages of this thread. Or maybe Clive will attach the current version. If I recall correctly he did a remap of M6 to move the turret to the correct X/Z position before each toolchange.
Please Log in or Create an account to join the conversation.
How does it know what/where to do things?
Please Log in or Create an account to join the conversation.
sudo halcompile --install yourcomp.comp
You can also run halcompile from somewhere else if you provide the path to the file:
sudo halcompile --install /pathtoyourfile/yourcomp.comp
halcompile will then add the necessary files to your linuxcnc code structure so you can load it in your hal file.
Please Log in or Create an account to join the conversation.
What I want to know is what is the purpose of compile, what does it do and how ?
How does it work etc. I'm trying to understand its purpose rather than just copying files manually into the correct folders etc.
Please Log in or Create an account to join the conversation.
Aciera post=217820 userid=25994halcompile will give you an output in the terminal window.I don't think there is much to see in the ini file regarding the toolchanger. With the component the toolchanger is no longer an axis/joint. I think the ini can be found somewhere in the earlier pages of this thread. Or maybe Clive will attach the current version. If I recall correctly he did a remap of M6 to move the turret to the correct X/Z position before each toolchange.I have attached the config for the 125 if that helps
Attachments:
Please Log in or Create an account to join the conversation.