Community
how change g53.1 p1 to g53.1 p2 in mazak vc-500 in postprocessors
and at it do this att the end
G53 X0. Y0. A0. C0.
Solved! Go to Solution.
Solved by seth.madore. Go to Solution.
Taking a peek at your post processor, it seems that you would want to change this line to be "P2":
Line 703 writeBlock(gFormat.format(53.1), "P1"); // turn machine
For your second question, you could also add the A callout to this line:
Line 2748 writeBlock(gFormat.format(53), gMotionModal.format(0), "C" + xyzFormat.format(0));
So it looks like this:
writeBlock(gFormat.format(53), gMotionModal.format(0), "A" + xyzFormat.format(0), "C" + xyzFormat.format(0));
Can't find what you're looking for? Ask the community or share your knowledge.