Renishaw Probe cycle modify for Mazak Post Processor

Renishaw Probe cycle modify for Mazak Post Processor

cjelley91
Advocate Advocate
1,202 Views
2 Replies
Message 1 of 3

Renishaw Probe cycle modify for Mazak Post Processor

cjelley91
Advocate
Advocate

I was able to get the DPRNT function to work by adding POPEN to beginning of probing cycle and PCLOS to the end of the cycle. I'm wondering if there is a change that can be made to my post processor to output the probing cycles as follows:



G43 H1 Z3.

G65 P9832 W1. (PROBE START – OPEN PRINT PORT) NEED W1. OUTPUT HERE

G65 P9810 Z.03153 F150.

G65 P9814 D1.13 Q.25 R-.2 W1. (MEASURE BORE – OUTPUT REPORT)

G65 P9810 Z3.

G65 P9833 W1. (PROBE END – CLOSE PRINT PORT) NEED W1. OUTPUT HERE



I'm really just looking to modify the post to output W1. after G65 P9832 & G65 P9832

 

 

0 Likes
Accepted solutions (1)
1,203 Views
2 Replies
Replies (2)
Message 2 of 3

Tomek.G
Autodesk
Autodesk
Accepted solution

Hi @cjelley91,

 

modify probe on (line 1043) and probe off (line 2328) like this:

 

writeBlock(gFormat.format(65), "P" + 9832 + 
conditional(currentSection.getCycleParameter(0, "printResults"), (" W" + xyzFormat.format(1 + currentSection.getCycleParameter(0, "incrementComponent")))));

 

 


Tomek.G
Sr. Technical Consultant
0 Likes
Message 3 of 3

cjelley91
Advocate
Advocate

Worked perfectly Thank you Tomek!

0 Likes