I have a Milltronics RH35 and a Marposs probe that uses macros to run probing cycles. I can't seem to figure out how to pass parameters on a G65 line. For example this will run just fine:
Code:
G65 P9312 H1.D2.S1. K-.35.
This however will not:
Code:
G65 P9312 H1. D[P1] S1. K-.35.
According to the documentation on my controller this is the proper syntax for parametric programming and it work fine with any other G code such as:
Code:
G00 X[P1]
or even
Code:
S[P1]
or
Code:
F[P1]
.

I have many other programs that use interactive parameter in this manner and none of them have this problem. I've been banging my head against the wall because I don't understand why it doesn't work.