DMG MORI NHX 6300

DMG MORI NHX 6300

brentm
Enthusiast Enthusiast
824 Views
1 Reply
Message 1 of 2

DMG MORI NHX 6300

brentm
Enthusiast
Enthusiast

On the post processer there is a G103, my machine does not recognize this. I think it is to cancel the look ahead, in my manual the look ahead is G08 P1 look ahead on and G08 P2 look ahead off

 

how do I alter my post to use the G08 instead of the G103?

 

I went in and replaced the G103 with a G08 and my control will still not recognize the code.

 

 

0 Likes
Accepted solutions (1)
825 Views
1 Reply
Reply (1)
Message 2 of 2

bob.schultz
Alumni
Alumni
Accepted solution

Thanks for bringing this to our attention.  The G103 code is used for testing for tool breakage.  There should be a check in the post to verify that you want to the tool checked at the end of an operation, but it is missing in this post.  You can make the following change in the onSectionEnd function so that this code is only output when the Break control box is checked.  The stock post will be updated with this fix.

if (tool.breakControl && (((getCurrentSectionId() + 1) >= getNumberOfSections()) ||
      (tool.number != getNextSection().getTool().number))) {
    onCommand(COMMAND_BREAK_CONTROL);
  }

You should make sure that the Break control box is unchecked for the defined tools.Break control.png

 

 

This post does not support the G08 code.  It uses the G332 code instead.



Bob Schultz
Sr. Post Processor Developer

0 Likes