home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games 1996 January
/
amigagames-cdrom-1996-01.iso
/
userbox
/
publicdomain
/
ncomm
/
scripts
/
rxread1.ncomm
< prev
next >
Wrap
Text File
|
1992-02-13
|
434b
|
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 */
options results /* Turn on result codes */
do forever /* for (;;) */
address 'ncomm' wait /* Wait for anything, return current line */
if RC ~= 0 then exit /* Exit if user selected Quit NComm */
say result /* Write line to CLI window */
end