I am trying to use the command S(MC)=SNSDEF/NONE,INDEX,POL,0,0 to make the machine coordinates active to send the machine to it's park position. When I set a FROM and then do a GOHOME, it does not go to the machine zeros.
Here is a sample of what I was trying, maybe I am doing something wrong.
In this I define one sensor and the none sensor, and make an alignment on the table top.
UNITS/MM,ANGDEC
V(0)=VFORM/ALL
DISPLY/TERM,V(0),STOR,DMIS,V(0)
D(0)=DATSET/MCS
MODE/MAN
S(MC)=SNSDEF/NONE,INDEX,POL,0,0
S(0)=SNSDEF/PROBE,INDEX,POL,0,0,0,0,1,127,2
SNSLCT/S(0)
UNITS/INCH,ANGDEC
F(PL0)=FEAT/PLANE,CART,0,0,0,0,0,1
TEXT/MAN,'TAKE 3 PTS ON TABLE'
MEAS/PLANE,F(PL0),3
ENDMES
F(PT0)=FEAT/POINT,CART,0,0,0,0,0,1
TEXT/MAN,'TAKE ON PT ON TABLE'
MEAS/POINT,F(PT0),1
ENDMES
F(PT1)=FEAT/POINT,CART,5,0,0,0,0,1
TEXT/MAN,'TAKE 1 PT ON THE TABLE X+ OF LAST'
MEAS/POINT,F(PT1),1
ENDMES
F(LN0)=FEAT/LINE,UNBND,CART,2.5,0,0,1,0,0,0,-1,0
CONST/LINE,F(LN0),BF,FA(PT0),FA(PT1)
DATDEF/FA(PL0),DAT(A)
DATDEF/FA(LN0),DAT(B)
DATDEF/FA(PT0),DAT(C)
D(1)=DATSET/DAT(A),ZDIR,ZORIG,DAT(B),XDIR,DAT(C),XORIG,YORIG
SNSLCT/S(MC)
FROM/0,0,0
GOHOME
PAUSE
ENDFIL