When programming the NC command #GET CMDPOS[..] or #SET IPO SOLLPOS[..], a syntax error (commas, equal signs, closing square brackets) was detected after the open square bracket.
Syntax example:
Wrong:
#GET CMDPOS [P1=X P2=Y] or
#GET CMDPOS [V.L.POS1 X ] or
#GET CMDPOS [P1=X, P2=Y, P3=Z
Correct:
#GET CMDPOS [P1=X, P2=Y]or
#GET CMDPOS [V.L.POS1=X ] or
#GET CMDPOS [P1=X, P2=Y, P3=Z]
|