home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff343.lzh / SoftSpan / data / modem < prev   
Text File  |  1990-04-16  |  1KB  |  49 lines

  1. # modem - contains modem commands and such
  2. # A '#' in the first column denotes a comment
  3.  
  4. # The name of the serial device
  5. SERNAME serial.device
  6.  
  7. # The Unit number of the serial device
  8. SERUNIT 0
  9.  
  10. # Modem instructions at startup & reset (determine the modem's settings)
  11. # Turn off auto answer mode
  12. # Modem doesn't worry about waiting for a carrier
  13. # Normal command set
  14. # E0 turns off command mode echo
  15. SET ATE0X1S0=0S7=0
  16.  
  17. # Escape sequence
  18. ESCAPE +++
  19.  
  20. # Hangup command
  21. HANGUP ATH
  22.  
  23. # Command to pick up the phone
  24. PICKUP ATA
  25.  
  26. # Default baud rate
  27. DEFBAUD 1200
  28.  
  29. # The following are connect messages for various baud rates
  30. # of the form         BAUD <rate> <message>
  31. # Where <rate> is the baud rate and <message> is the message your
  32. # modem sends out when a connection is made at that baud rate
  33.  
  34. BAUD 300 CONNECT
  35. BAUD 1200 CONNECT 1200
  36. BAUD 2400 CONNECT 2400
  37.  
  38. # Phone ringing message
  39. RINGMSG RING
  40.  
  41. # Number of rings before answering
  42. NUMRINGS 1
  43.  
  44. # No carrier message
  45. NOCD NO CARRIER
  46.  
  47. # The number of seconds to wait from phone pickup to carrier
  48. WAITCONNECT 15
  49.