
Section 4 Serial Controller
4.69
data must be transferred using the
SEND
command, then multiple
SEND
commands must be used so that they are each less than 127
characters long. For example…
PRINT#1,"SEND UNT UNL MTA LISTEN 16 DATA
1,2,3,4,5,6"
is equivalent to…
PRINT#1,"SEND UNT UNL MTA LISTEN 16"
PRINT#1,"SEND DATA 1,2,3"
PRINT#1,"SEND DATA 4,5,6"
This way, a long
SEND
command can be broken up into shorter
commands.
MODE High Level Controller
BUS STATES User defined
QUERY None
RESPONSE
EXAMPLES PRINT#1,"SEND MTA UNL LISTEN 16 DATA
'T1S0R2X'"
is the same as:
PRINT#1,"OUTPUT16;T1S0R2X"
PRINT#1,"SEND CMD128,0,10 DATA156,35
EOI'ABC'"
sends the following byte sequence:
Data ATN EOI
10000000 ATN *EOI
00000000 ATN *EOI
00001010 ATN *EOI
10011100*ATN *EOI
00100011*ATN *EOI
01000001*ATN *EOI
01000010*ATN *EOI
01000011*ATN EOI
Komentáře k této Příručce