home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / softspan_374.lzh / SoftSpan / data / modem < prev   
Text File  |  1990-10-08  |  1KB  |  59 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. # Hang up by dropping DTR
  11. # If you are using anything except the Amiga's internal serial port,
  12. # you should remove this line to hang up by a +++, ATH combination
  13. DTR_HANGUP
  14.  
  15. # Modem instructions at startup & reset (determine the modem's settings)
  16. # Turn off auto answer mode (S0 = 0)
  17. # Modem doesn't worry about waiting for a carrier (S7 = 0)
  18. # Normal command set
  19. # E0 turns off command mode echo
  20. # Detect carrier drop immediately (S10 = 0)
  21. # Minimize escape sequence guard time (S10 = 0)
  22. # Disable escape sequence (S2 = 255) <--- Remove this if you didn't
  23. #                                         select DTR_HANGUP
  24. SET ATE0S0=0S2=255S7=0S12=1
  25. #SET ATE0S0=0S7=0S12=1
  26.  
  27. # Escape sequence
  28. ESCAPE +++
  29.  
  30. # Hangup command
  31. HANGUP ATH
  32.  
  33. # Command to pick up the phone
  34. PICKUP ATA
  35.  
  36. # Default baud rate
  37. DEFBAUD 1200
  38.  
  39. # The following are connect messages for various baud rates
  40. # of the form         BAUD <rate> <message>
  41. # Where <rate> is the baud rate and <message> is the message your
  42. # modem sends out when a connection is made at that baud rate
  43.  
  44. BAUD 300 CONNECT
  45. BAUD 1200 CONNECT 1200
  46. BAUD 2400 CONNECT 2400
  47.  
  48. # Phone ringing message
  49. RINGMSG RING
  50.  
  51. # Number of rings before answering
  52. NUMRINGS 1
  53.  
  54. # No carrier message
  55. NOCD NO CARRIER
  56.  
  57. # The number of seconds to wait from phone pickup to carrier
  58. WAITCONNECT 15
  59.