Hi @britovsekmatic128 ,
Yes. You can download Fanuc Milling generic post-processor from here and make the following changes on your post-processor.
Open your Postprocessor in any editor or VS code & search for function defineMachine() . You will find the following codes in your post-processor.
Step 1 : Now change it from this...
function defineMachine() {
var useTCP = true;
if (true) { // note: setup your machine here
var aAxis = createAxis({coordinate:0, table:true, axis:[1, 0, 0], cyclic:true,range:[-90, 90], preference:0, tcp:useTCP});
var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], cyclic:true, tcp:useTCP});
to this
function defineMachine() {
var useTCP = false; // set it true if machine supports TCP
if (true) { // note: setup your machine here
var bAxis = createAxis({coordinate:1, table:true, axis:[0, 1, 0], cyclic:true, preference:0, tcp:useTCP});
// var cAxis = createAxis({coordinate:2, table:true, axis:[0, 0, 1], cyclic:true, tcp:useTCP});
machineConfiguration = new MachineConfiguration(bAxis); // set B axis
Step : 2 Set the following variable to false.
From true to
var useMultiAxisFeatures = true;
false
var useMultiAxisFeatures = false; // set it to false
Now save the post modification and test it carefully.
If you are still facing difficulty in the post modification Please contact one of our CAM partners who offer post customization services. You will find these partners here: Service Marketplace
Thanks,
Krupal Vala
Senior Technology Consultant - Post Processor & Machine Simulation