I hope I can make sense of this.
When I use "Setup" to "Create NC Program" I have to always be sure to select (check box) for G0. Is there a way to get this to default to G0 being selected?
If I post process a setup without using the "NC Program" and look at the Parameters, G0 is checked. Why is it not checked in the "NC Program" setup?
On a similar note, is there a way to change the default feed rate of F650. to F600. if I don't use "Using high feed G1 F650. instead of G0." My machines max feed rate is 600 and alarms out at 650.
Solved! Go to Solution.
Solved by Arun.rs. Go to Solution.
HI @1Macaddict
Thanks for raising your concern via Forum.
You will likely need to edit the post processor to suit your particular needs. Open post file in a 'Visual Studio Code' or 'Notepad++' to do the required modifications.
1. To have G0 as default in property table, go to ' properties' , line number 52
a. Set the 'useG0' property as true , default will be false in initial post.
useG0: true, // allow G0 when moving along more than one axis
2. For highfeedrate
b. Go to line number 49. Give 600 instead of 650.
highFeedrate = (unit == IN) ? 600 : 5000; // up to 600 should be supported
Hope this helps!
Regards
Thank you for the response. I'll make those adjustments. The only down side is that I will have to remember to redo the changes whenever I install an updated post. Thanks much for your time.
Can't find what you're looking for? Ask the community or share your knowledge.