home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / os / os2 / apps / 10692 < prev    next >
Encoding:
Text File  |  1993-01-25  |  3.8 KB  |  141 lines

  1. Newsgroups: comp.os.os2.apps
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!sdd.hp.com!ux1.cso.uiuc.edu!news.cso.uiuc.edu!meibm4.cen.uiuc.edu!janovetz
  3. From: janovetz@meibm4.cen.uiuc.edu (Jacob W Janovetz)
  4. Subject: Re: TE/2 and SupraFax v.32 bis modem
  5. References: <halverso.728000607@staff.tc.umn.edu>
  6. Message-ID: <C1Fonq.GuC@news.cso.uiuc.edu>
  7. Sender: usenet@news.cso.uiuc.edu (Net Noise owner)
  8. Organization: University of Illinois at Urbana
  9. Distribution: na
  10. Date: Mon, 25 Jan 1993 23:45:25 GMT
  11. Lines: 128
  12.  
  13. halverso@staff.tc.umn.edu (Chris Halverson) writes:
  14.  
  15. >Does anyone know what configuration file to include from modems.zip
  16. >for a SupraFax v.32bis modem. It's a 14.4 modem. I can dial, and
  17. >almost connect, but it doesn't recognize the connection and times out.
  18. >It just sits there in the dialing box until I cancel it. I don't know
  19. >too much about modems and init strings, etc., so any help would be
  20. >appreciated. Alternately, if someone's already got this working, could
  21. >you send me a copy? I'll summarize if needed. Thanks. 
  22. >--
  23. >Chris Halverson        halverso@staff.tc.umn.edu 
  24. >Windows is, at best, a priggish, effeminate interface modeled
  25. >after the sissified Macintosh operating system interface. 
  26. >                 -John C. Dvorak 
  27. >                            
  28.  
  29. I have TE/2 running excellent under a Supra.  Though, because of some sort
  30. of limitation with OS/2 (I have 2.1b, but it worked under 2.0, too), all the
  31. baud rates must be set to 19,200.  NOT 38.400.   38,400 works fine for text,
  32. but many bytes get lost in downloads.  (for me)  Here is my te2.ini file,
  33. which I wrote, strongly based on the te2.ini included:
  34.  
  35. ; Device and Modem Settings:
  36.  
  37. Device         COM2
  38. ModemDelayChar 0x7e,500
  39.  
  40. ; SupraFAX Modem.Inc file
  41.  
  42. Baud          19200
  43. Parity        N
  44. WordLen       8
  45. StopBits      1
  46.  
  47. XonXoff       BOTH
  48. CtsRts        BOTH
  49. MatchBaud     FALSE
  50.  
  51. ModemInitStrg ATZ^M
  52. ModemDialStrg ATDT
  53. ModemDialSufx ^M
  54. ModemHangStrg ~~~+++~~~ATH0^M
  55. DTRHangup     TRUE
  56.  
  57. Connect       CARRIER,19200
  58.  
  59. NoConnect     NO_DIALTONE
  60. NoConnect     NO_CARRIER
  61. NoConnect     BUSY
  62. NoConnect     VOICE
  63. ;  ---End of Modem.Inc file for SupraFAX Modem
  64.  
  65. ModemAnsStrg   ATS0=1^M
  66. ModemOKStrg    OK
  67. ;ExtendedFIFO  FALSE          ; Use ONLY if necessary, see TE2.DOC
  68.  
  69.  
  70. ; Terminal Settings:
  71.  
  72. AlarmPopUp     TRUE           ; TE/2 will alert you in other sessions
  73. AlarmTime      2              ; in seconds
  74. AlarmType      CHIME          ; or BUZZER, or NONE
  75. ChatBuffered   TRUE 
  76. ColorLock      FALSE
  77. ClsReset       TRUE           ; Alt-C resets default terminal attribute
  78. LFafterCR      FALSE
  79. LocalEcho      FALSE
  80. LogoDelay      8              ; in seconds
  81. MenuActive     FALSE 
  82. QueryHangUp    FALSE 
  83. ;ScreenLines   25
  84. ScrollBack     8000
  85. SwapBS4Del     FALSE
  86.  
  87. ; Emulation Settings
  88.  
  89. Emulate        ANSI_TE2       ; or TTY, ANSI, VT100, or 3101
  90.  
  91. ; Dialer and Dialing Directory
  92.  
  93. AutoDirSave    TRUE
  94. DialerSendInit FALSE
  95. DialerTimeOut  45
  96. RedialDelay    2
  97.  
  98. ; Transfer Protocols
  99.  
  100. AsciiUL         0x3a,CR,TRUE,0,0,FALSE,TRUE,0,6000
  101. AutoZM          TRUE
  102. DownloadPath    c:\bbsfiles\download
  103. ;UploadPath     NULL
  104. ;DLPrtyClass    FIXEDHIGH,0
  105. ;ULPrtyClass    FIXEDHIGH,0
  106. ClobberDL       SALVAGE
  107. ;QueryZMRecover FALSE         ; Not used in the shareware version
  108.  
  109. ; Color Attributes
  110.  
  111. TermAttr  0x0f
  112. MenuNormAttr    0x03
  113. MenuHiAttr      0x0e
  114. LogoAttr        0x1f
  115. DLogNormAttr    0x20
  116. DLogHiAttr      0x2f
  117. DLogDaAttr      0x28
  118. DLogEdAttr      0x02
  119. DLogEdHiAttr    0x70
  120. shadowAttr      0x08
  121. dialNormAttr    0x03
  122. dialHiAttr      0x0e
  123. ErrorAttr       0x4f
  124. ScrlBackAttr    0x03
  125. ScrlBackMkAttr  0x13
  126. ScrlBackTiAttr  0x30
  127. ScrlBackFdAttr  0x4f
  128. ChatAttr        0x0b
  129. ChatRemoteAttr  0x03
  130. ChatTitleAttr   0x30
  131. cmdPromptAttr   0x0e
  132. cmdInputAttr    0x1f
  133. cmdInputHiAttr  0x4f
  134.  
  135. There ya have it...  Good luck.  Let me know if you need anything else
  136. or the above ini file doesn't work for you...
  137.  
  138. -- 
  139.  Hi, this is Jake's .signature file
  140.  
  141.