G Mode Functions
Chapter 8
GPIB-232CT User Manual
8-2
© National Instruments Corp.
WRT$="SPSET
1200,n,8"+CHR$(13)
CALL
IBWRT(GPIB232%,WRT$)
WRT2$="XON
1,1"+CHR$(13)
CALL
IBWRT(GPIB232%,WRT$)
or, you could put both messages in one string and send it to the
GPIB-232CT in one GPIB write:
WRT$="SPSET
1200,n,8"+CHR$(13)+"XON
1,1"+CHR$(13)
CALL
IBWRT(GPIB232%,WRT$)
•
It is necessary for you to send only enough characters of the function
name to distinguish it from other functions. These characters are
shown in
boldface
in the syntax portion of the function descriptions.