home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / apple2 / 23758 < prev    next >
Encoding:
Text File  |  1992-11-11  |  5.1 KB  |  114 lines

  1. Newsgroups: comp.sys.apple2
  2. Path: sparky!uunet!charon.amdahl.com!pacbell.com!ames!sun-barr!cs.utexas.edu!wupost!csus.edu!netcom.com!tbc
  3. From: tbc@netcom.com (Mike Garvey)
  4. Subject: Re: Question about //e serial ports
  5. Message-ID: <1992Nov12.012503.3100@netcom.com>
  6. Organization: Netcom - Online Communication Services (408 241-9760 guest)
  7. References: <m0moSv1-0000VnC@crash.cts.com>
  8. Date: Thu, 12 Nov 1992 01:25:03 GMT
  9. Lines: 103
  10.  
  11. In a prior missive, sbennett@gnh-starport.cts.com (Stephen Bennett) eloquently
  12. scribed this stuff:
  13.  
  14. >> 2) Does the port support 9600 baud (I have
  15. >>   a Concord Data Systems modem)?
  16. >Yup, it will:  Here's how to set it.  There's a black jumper block on the
  17. >right side of the SSC as you look at the components.  This is how you switch
  18. >it between use for a modem or printer.  Pull out the jumper, and put it in
  19. >so that the point of the triangle is pointing UP (there should be the word
  20. >MODEM over the block) instead of down (where the SSC should say TERMINAL).
  21. >You also need to move switches 1-5, 1-6 and 1-7 to ON, and 2-7 to OFF.
  22. >(There are two types of switches that have been used on the SSC.  If you
  23. >have rocker switches, the switch is ON when the top of the switch is pushed
  24. >in.  If you have sliding switches, the switch is ON when the switch has been
  25. >slid to the top.)
  26.  
  27.  
  28. The Super Serial Card can support a maximum speed of 19.2Kbps. The actual
  29. functions of SW1-7 and SW2-7 are only documented in Apple IIe Technical
  30. Note #7. When SW1-7 is on, pin-8 of the DB-25 is the Data Carrier Detect
  31. Signal (DCD). When SW2-7 is on, pin-19 is a Secondary Clear-to-Send (SCTS)
  32. signal.
  33.  
  34. It is ironic that these two signals aren't fully documented except in a
  35. technote. It is unfortunate that DCD and CTS aren't handled properly by the
  36. SSC either. Let me explain. For most applications, a cable that ties the
  37. DSR line (pin-6) at the port to the DCD line (pin-8) of the modem, is
  38. required. Without this connection, software cannot know when the modem has
  39. disconnected with the remote modem. Most Apple II communications software
  40. thus reads the DSR line for carrier status. Also, the SSC cannot
  41. communicate with the modem unless it believes that a carrier is present.
  42.  
  43. High-speed modems require hardware flow-control for maximum speed.
  44. Unfortunately, the SSC doesn't like a 'straight-through' Clear-to-Send
  45. (CTS) signal on pin-5. Paul "The Oggman" Parkhurst has been recently
  46. working on some high-speed modem drivers for GBBS and could only get
  47. flow-control working correctly by using the following cable:
  48.  
  49. Apple Super Serial Card to Modem
  50.  
  51. SSC (DB-25)    Modem (DB-25)
  52. -----------------------------
  53.   2 (TxD)  ------>  2 (TxD)
  54.   3 (RxD)  <------  3 (RxD)
  55.   4 (RTS)  ------>  4 (RTS)
  56.   6 (DSR)  <------  8 (DCD)
  57.   7 (GND)  <----->  7 (GND)
  58.   8 (DCD)  <------  5 (CTS)
  59.  20 (DTR)  ------> 20 (DTR)
  60.               |
  61.   5 (CTS)  ---
  62.  
  63. The problem is that the first character sent after the modem resumes
  64. transmitting (CTS falls, modem pauses, modem empties its buffer, CTS rises,
  65. modem resumes) is corrupted. This cable basically asserts CTS constantly
  66. during a connection and uses the DCD line for transmit flow-control. So now
  67. the working interface has DSR acting as DCD, and DCD acting as CTS --
  68. confused yet?
  69.  
  70. >> 3) How do you select the speed?
  71. >Switches 1-1 through 1-4 are for the baud rate settings.  For 9600 baud,
  72. >you should set them as:  1-1 through 1-3 OFF, 1-4 ON.
  73.  
  74. The baud rate of the SSC is only read when power is first applied; most
  75. communication software ignores the settings of these switches. In fact,
  76. I've gotten best results with SW1-1 through 1-4 on (i.e. the null,
  77. undefined setting).
  78.  
  79. >Switch 2-6 controls forwarding of interrupts to the Apple II.  I believe
  80. >that this should be set to OFF for the //e, so that interrupts won't be
  81. >forwarded to the computer.
  82.  
  83. You definitely WANT interrupts forwarded to the computer when using a
  84. high-speed modem, otherwise you are sure to lose data; SW2-6 should be set
  85. to on.
  86.  
  87. >> 4) What are the pinouts?
  88. >It's a standard DB-25 connector, and if you've switched the jumper, that has
  89. >the effect of having switched the Transmit Data and Receive Data pins (pins
  90. >2 and 3, as I recall) that's normally done in the modem cable, so you can
  91. >use a standard straight through DB-25 cable, probably the same one as you
  92. >were using to the printer, if I remember all of this correctly (It's been
  93. >awhile since I've done much with SSCs, but this should be correct).
  94. >If I'm incorrect about the cable, I'm sure someone will correct me, I'm
  95. >pretty sure everything else is correct...  :)
  96.  
  97. I recommend using the cable I described above.
  98.  
  99. (Wanders off mumbling something about Paul has a similar cable hack for the
  100. GS (again, CTS on the DCD line) that also neatly sidesteps the problem with
  101. the 26LS32 chip that Brendan Hoar reported here. Funny thing, Apple IIs and
  102. the CTS signal)
  103.  
  104. Be seeing you...
  105. -- 
  106. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  107. =  The Black Cursor (c) & TM  -=-  Sysop: Valhalla -- an Ogg-Net BBS  =
  108. =  Internet: tbc@netcom.com   -=-  (415) 221-4370  300-14,400bps 8N1  =
  109. =  GEnie: TBC   "No sir, I don't like it." - The Ren and Stimpy Show  =
  110. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  111.