Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
This page has been translated for your convenience with an automatic translation service. This is not an official translation and may contain errors and inaccurate translations. Autodesk does not warrant, either expressly or implied, the accuracy, reliability or completeness of the information translated by the machine translation service and will not be liable for damages or losses caused by the trust placed in the translation service.Translate
Post Process selection option in properties for the use of either G54-59 or G154 P1-9, G155 P1-9 ect.... Currently offsets beyond G59 gives a Error: Work offset out of range.
I've looked at the Milltronics 9000 programming manual and I see G54x-G59x extended work offsets (60 total), but I don't see G154 Px style offsets. Are you sure this is the correct syntax?
@bob.schultz Sorry for the late reply. You are corrent. The offset are G540 to G599. If I go beyond 6 offsets with current post I have issues. Instead of starting at G540 it starts with a G54, and ends at G58, then restarts with a G55 and the last 2 Contours don't have a Offset assigned.
@tommyjrobison As you probably found out, the implementation was made to match the control where 54=540, 55=550, 59=590, etc. This makes it so the same work offsets can be used in Fusion/HSM when switching from standard to extended work offsets on the control.
You can change the following code in the post to use a consecutive numbering system instead.
// var wcs = v1 == 0 ? 590 + v2 - 1 : (53 + v1) * 10 + v2; // comment out this line
var wcs = 539 + workOffset; // add this line