Sinumerik 810d Post Processor Wrong tool Line

Sinumerik 810d Post Processor Wrong tool Line

Anonymous
Not applicable
422 Views
1 Reply
Message 1 of 2

Sinumerik 810d Post Processor Wrong tool Line

Anonymous
Not applicable

Hello,

i have hopfully just a small problem. The Post processor for the Sinumerik 810d control writes the Tool Change Line wrong. It should be the M6 command with the tool Name in one Line and not in two different Lines. And it also should remove The T Number. I have here an small example on what i am Talking about. Hopefully somebody can help me. Here the example

 

Curently Post Prozessor:

 

N16 ; Adaptiv2
N17 M9
N18 T1
N19 M6
N20 ; T="FRAESER 12 ALU"

 

And it should look like this :

 

N16 ; Adaptiv2
N17 M9
N18 M6 T="FRAESER 12 ALU"

 

 

0 Likes
423 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable

you could try changing these lines.

writeBlock("T" + toolFormat.format(tool.number), dFormat.format(lengthOffset));
    writeBlock(mFormat.format(6));

to

writeBlock("T" + toolFormat.format(tool.number ),mFormat.format(6) );
    writeBlock(dFormat.format(lengthOffset));

This is what I get with the changes.

N19 T1 M6
N20 D1
N21 T33

The T33 after the tool change if for pre loading the next tool. If you don't want to preload tools you have to go to the top of the post and find preloadTool and change to false. Be very careful when making post changes. I am not an expert.

 

Good luck

Jason