User's Manual
Table Of Contents
- Contents
- Overview
- Controller Notation
- Servo and Stepper Motor Notation:
- Command Descriptions
- Servo Update Rates
- Commands which are not Allowed when Operating in Fast Mode:
- #
- $
- & |
- ( )
- ;
- [ ]
- + - * /
- <, >, =, <=, >=, <>
- =
- AB
- @ABS[n]
- AC
- @ACOS[n]
- AD
- AF
- AI
- AL
- AM
- @AN[n]
- AO
- AP
- AR
- AS
- @ASIN[n]
- AT
- @ATAN[n]
- #AUTO
- #AUTOERR
- AV
- BA
- BB
- BC
- BD
- BG
- BI
- BK
- BL
- BM
- BN
- BO
- BP
- BS
- BV
- BZ
- CB
- CC
- CD
- CE
- CF
- CI
- CM
- #CMDERR
- CN
- CO
- @COM[n]
- #COMINT
- @COS[n]
- CR
- CS
- CW
- DA
- DC
- DE
- DL
- DM
- DP
- DT
- DV
- EA
- EB
- EC
- ED
- EG
- EI
- ELSE
- EM
- EN
- ENDIF
- EO
- EP
- EQ
- ER
- ES
- ET
- FA
- FE
- FI
- FL
- @FRAC[n]
- FV
- GA
- GN
- GM
- GR
- HM
- HX
- IA
- IF
- IH
- II
- IL
- IN
- @IN[n]
- #ININT
- @INT[n]
- IP
- IT
- IV
- JG
- JP
- JS
- KD
- KI
- KP
- KS
- LA
- LE
- _LF*
- LI
- #LIMSWI
- LL
- LM
- _LR*
- LS
- LV
- LZ
- MB
- MC
- #MCTIME
- MF
- MG
- MO
- MR
- MT
- NB
- NF
- NO
- NZ
- OB
- OC
- OE
- OF
- OP
- @OUT[n]
- P1CD P2CD
- P1CH P2CH
- P1NM P2NM
- P1ST P2ST
- #POSERR
- PA
- PF
- PR
- QD
- QR
- QU
- QZ
- RA
- RC
- RD
- RE
- REM
- RI
- RL
- @RND[n]
- RP
- RS
-
R S -
R V - SA
- SA n
- SB
- SC
- SH
- @SIN[n]
- SL
- SP
- @SQR[n]
- ST
- @TAN[n]
- TB
- TC
- #TCPERR
- TD
- TE
- TH
- TI
- TIME*
- TL
- TM
- TP
- TR
- TS
- TT
- TV
- TW
- UI
- UL
- VA
- VD
- VE
- VF
- VM
- VP
- VR
- VS
- VT
- WC
- WH
- WT
- XQ
- ZR
- ZS
- Index

DMC-1400 Series Command Reference SA ● 179
SA
FUNCTION: Send Command
DESCRIPTION:
SA sends a command from one Galil controller to another controller or IOC-7007 board over Ethernet.
Any command can be sent to another Galil card and will be interpreted by the card as a “local”
command.
Note: A wait statement (e.g. WT5) must be inserted between successive calls to SA.
ARGUMENTS: SAh= arg or SAh=arg,arg,arg,arg,arg,arg,arg,arg where
h is the handle being used to send commands to other Galil Ethernet controller.
arg is a command, number, Galil controller or IOC-7007 operand, variable, mathematical
function, or string; The range for numeric values is 4 bytes of integer (2
31
)followed by
two bytes of fraction (+/-2,147,483,647.9999). The maximum number of characters for a
string is 6 characters. Strings are identified by quotations.
Typical usage would have the first argument as a string such as “KI” and the subsequent
arguments as the arguments to the command: Example SAF= “KI”,1,2 would send the
command “KI 1,2”
USAGE:
While Moving Yes Default Value --
In a Program Yes Default Format --
Command Line Yes
Can be Interrogated Yes
Used as an Operand Yes
Controller Usage
DMC-1415/1416/1425
OPERAND USAGE:
_SAhn gives the value of the response to the command sent with an SA command. The h
value represents the handle A thru H and the n value represents the specific field returned
from the controller (1-8). If the specific field is not used, the operand will be –2^31.
RELATED COMMANDS:
IH Set Internet Handles
EXAMPLES:
SAA=”KI”,1,2;WT5 Sends the command to handle A (slave controller): KI 1,2
SAA=”KI?,?” Sends the command to handle A (slave controller): KI?,?
MG _SAA1
Display the content of the operand _SAA (first response to KI?,?
command)
: 1
MG _SAA2
Display the content of the operand _SAA (2nd response to KI?,?
command)
: 2
NOTE: A wait statement (eg. WT5) should be inserted between successive calls to SA.