home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 January
/
CHIPCD1_98.iso
/
software
/
tipsy
/
zoc
/
install.fil
/
SCRIPT
/
RXSAMPLE
/
TUTORIAL
/
4_MODEM.ZRX
< prev
next >
Wrap
Text File
|
1996-08-26
|
341b
|
20 lines
/* REXX */
/* send something to the modem and wait for an anwser */
CALL ZocSend "ATZ^M"
/* tell ZOC to wait 3 seconds max. */
CALL ZocTimeout 3
/* wait for answer */
timeout= ZocGetline()
IF timeout=0 THEN DO
SAY "THE MODEM SEEMS TO RESET FINE!"
END
ELSE DO
SAY "THE MODEM SEEMS TO HAVE PROBLEMS!"
END
EXIT