home *** CD-ROM | disk | FTP | other *** search
- /*
- This is for accessing the Supra 2400zi modem at the DOS level.
- If the software you are using requires a DOS level interface,
- copy the mdm-handler file from the SupraModem disk to your l:
- directory. Then add the MDM: entry provided below to the
- MountList in your devs: directory.
-
- You may specify the desired baud rate,databits,parity,stopbits
- when you open the device...
-
- mdm:set/1200/8/N/1
-
- This would open the mdm: device at 1200 baud, 8 bits, no parity,
- and 1 stop bit.
-
- Allowable baud rates : 2400, 1200, 600, 300
- Allowable databits : 8, 7
- Allowable parity : N,E,O (None,Even,Odd)
- Allowable stopbits : 1,2
-
- You may specify whether you want the handler to echo the characters
- back or not. The default will echo. To turn off the echo...
-
- mdm:NOECHO
-
- You may also specify whether you wish to pass everything through
- without interpretation (RAW mode). To do this...
-
- mdm:RAW
-
-
- You may mix and match between the baudrate setup,noecho and raw
- when opening the device...
-
- mdm:set/2400/8/e/1/NOECHO/RAW
-
- Note: If you attempt to startup a cli on the modem, set the modem
- up using a terminal program by issuing the commands:
-
- ATS0=1 (to answer the phone)
- ATQ1 (to turn off result codes)
- ATE (to turn off echo)
-
-
- You may then do
-
- newcli mdm:
-
- to startup a cli on the modem.
-
- */
-
- MDM: Handler = L:Mdm-Handler
- Stacksize = 4000
- Priority = 5
- #
-
-
-
- NOTE: Some people have had problems making the mdm-handler work. We are
- trying to find the solution, but at this time do not have one. 5/10/91
-