home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
communic
/
ncomm3.0
/
scripts
/
rxread1.ncomm
< prev
next >
Wrap
Text File
|
1995-02-27
|
473b
|
12 lines
/* Demonstrates a way to read serial chars with immediate response */
/* This scripts sends all data that is received within NComm */
/* to the current CLI window. Must be executed with the RX command */
options results /* Turn on result codes */
do forever /* for (;;) */
address 'ncomm' wait /* Wait for anything, return current line */
if RC == 20 then exit /* Exit if user selected Quit NComm */
say result /* Write line to CLI window */
end