G Mode Functions
Chapter 8
GPIB-232CT User Manual
8-4
© National Instruments Corp.
Examples:
1.
WRT$="echo 1"+CHR$(13)
'Enable character
CALL
IBWRT(GPIB232%,WRT$)
'echoing.
2.
WRT$="ECHO 0"+CHR$(13)
'Disable character
CALL
IBWRT(GPIB232%,WRT$)
'echoing.
3.
WRT$="echo"+CHR$(13)
'What is the
CALL IBWRT(GPIB232%,WRT$)
'current echo
CALL
IBRD(GPIB232%,RESP$)
'status?
'RESP$ contains
'0<CR><LF>
'(character echo is
'disabled).