home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / modems / modem / cp405src.ark / CP4ANN.TXT < prev    next >
Encoding:
Text File  |  1986-12-26  |  7.7 KB  |  167 lines

  1. This is to announce version 4.03 of CP/M-80 Kermit.  This is a "beta test"
  2. of a major new release, and will not replace the current version (3.9A),
  3. until it has proven to be stable.
  4.  
  5. The major change is the decomposition of the program into a collection of
  6. modules, a`la MDMxxx, with a new procedure that allows combining custom
  7. "configuration overlays" with the system-independent portions of the program.
  8. This allows fixes or new features to be added to the protocol without requiring
  9. reassembly of the program for each system supported, and conversely, allows
  10. support for new systems to be added (or old ones fixed) without reassembly for
  11. the other systems.  An added benefit of the breakup of the old monolithic
  12. source file into smaller files is managability on systems with limited disk
  13. storage -- at 176K, the version 3.9A source file exceeded the capacity of many
  14. common floppies.
  15.  
  16. The modular decomposition is not quite complete, however, since the system-
  17. dependent code for all systems is still combined in one module, with
  18. assembly time conditionals for each system.  A future release will break
  19. this module, CP4SYS.ASM, into separate, unconditionalized modules for each
  20. system.
  21.  
  22. Here are some of the new features of version 4:
  23.  
  24. * New systems:
  25.  
  26. Support has been added for several new systems or configurations:
  27.  
  28.     Apple II, Z80 Softcard, 6551 ACIA
  29.     BigBoard II
  30.     CPT-85xx word processer
  31.     Digicomp Delphi 100
  32.     Morrow Micro Decision I
  33.  
  34. However, support that was recently added to version 3 of CP/M Kermit for
  35. systems like the Heath H8 and Compupro Interfacer 3/4 is not included;
  36. volunteers are needed to do the conversions.
  37.  
  38. * Terminal support:
  39.  
  40. For micros without integral consoles, one of several terminals may be
  41. chosen (among them VT100, VT52, and ADM-3A), as well as the generic "CRT".
  42.  
  43. * Debugging aids:
  44.  
  45. SET DEBUG ON will add two fields to the SEND/RECEIVE display, labelled "Spack"
  46. and "Rpack".  These display the last packet sent or received.  Of course, this
  47. slows down the transfer, especially if the console is an external terminal.
  48. SET DEBUG OFF removes these fields.
  49.  
  50. The VERSION command displays the name, edit number, and edit date of several
  51. of the modules that make up Kermit.
  52.  
  53. * TAC support:
  54.  
  55. ARPAnet TACs (and probably some other communication devices like modems,
  56. multiplexers, port contention units) use a printing character (normally "@") as
  57. an intercept character, to allow commands to be issued to the TAC.  In order to
  58. send this character to the host, it must be typed twice.  The command "SET TAC
  59. CHARACTER" to Kermit enables the TACtrap and asks the user to specify the TAC
  60. intercept character.  This character will be automatically doubled when it
  61. appears in Kermit protocol messages (sent by the SEND or RECEIVE commands) or
  62. when it appears in a file being sent with the TRANSMIT command.  It is not
  63. automatically doubled when typed by the user in CONNECT mode.  "SET TAC ON"
  64. enables the TACtrap but does not change the TAC intercept character, which is
  65. initially "@".  "SET TAC OFF" disables the TACtrap.
  66.  
  67. * File buffering:
  68.  
  69. Previous versions of Kermit-80 buffered only one sector (128 bytes) at a time
  70. during file transfer operations.  This version buffers 16Kbytes at a time,
  71. reducing the number of times the floppy drive must be spun up and down, and
  72. increasing the effective throughput of the link.  If the disk transfer rate
  73. is too slow, howver, the remote Kermit may time out and retransmit packets.
  74. This will show up on the screen in the "Retries:" field; if this occurs after
  75. disk activity, you may want to increase the timeout value on the remote
  76. Kermit, or reassemble Kermit with a smaller value for MAXSEC (in CP4SYS.ASM).
  77. This buffer is also used by the TRANSMIT command; the log file enabled by
  78. the LOG command is still written a sector at a time.
  79.  
  80. * Baud Rate Setting:
  81.  
  82. The format of the SET BAUD-RATE command has been changed for several systems.
  83. Rather than requesting the user to enter a letter for the speed, the desired
  84. baud rate is supplied on the command line (e.g. "SET BAUD 1200").  A list
  85. of supported baud rates may be obtained by typing "SET BAUD ?".  If Kermit
  86. cannot change the baud rate for your system, it will reply "(not implemented)".
  87.  
  88. * Generic CP/M 2.2 Support:
  89.  
  90. The "generic" Kermit-80 for CP/M 2.2 (assembly switch GENER) supports six
  91. port selections, to improve the chances of finding one that works.  Kermit
  92. reads from PTR: and writes to PTP: by default;  if this does not work, try
  93. "SET PORT TTY".  The following table lists the CP/M devices used for each
  94. option:
  95.  
  96.     SET PORT xxx    input from    output to
  97.         CRT           CRT:           CRT:
  98.         PTR           PTR:           PTP:
  99.         TTY           TTY:           TTY:
  100.         UC1           UC1:           UC1:
  101.         UR1           UR1:           UP1:
  102.         UR2           UR2:           UP2:
  103.  
  104. In all cases, the console (CON:) and list (LST:) devices used are those
  105. selected when Kermit is started.
  106.  
  107. * How to Get It:
  108.  
  109. The files are in KER:CP4*.* on CU20B, available via anonymous FTP.  CU20B is
  110. Internet host [192.5.43.128].  The source files have the extension (file type)
  111. .ASM, the hex files .HEX.  There is also a new Kermit User Guide chapter in
  112. KER:CP4KER.DOC and .MSS (Scribe text formatter source).  A list of known bugs
  113. and deficiencies is in KER:CP4KER.BWR (this file will be updated as reports
  114. come in).
  115.  
  116. Note that a new, somewhat more complicated, installation procedure is required.
  117. Two hex files -- the system-dependent part, and the "configuration overlay" --
  118. must be combined and then loaded.  Detailed instructions are given in
  119. KER:CP4KER.DOC.
  120.  
  121. The program may be built with the public-domain assembler and linker,
  122. LASM and MLOAD, or on the DEC-10 or DEC-20 with Bruce Tanner's MAC80 and
  123. LINK80.  Unfortunately, it can no longer be built with ASM and LOAD because
  124. multiple files are used (this is the price we pay for modularity).
  125. LASM, MLOAD, MAC80, and LINK80 are all in the <KERMIT-TOOLS> area on CU20B,
  126. for those who need them.  <KERMIT-TOOLS> can be referred to as KT:, as in
  127. KT:MLOAD.HEX.
  128.  
  129. The following systems are supported:
  130.  
  131. Symbol  Filename System
  132. ------  -------- ------
  133. AP6551  CP4APL   Apple II, Z80 Softcard, 6551 ACIA in serial interface
  134. APMMDM  CP4APM   Apple II, Z80 Softcard, Micromodem II in slot 2
  135. BBII    CP4BB2   BigBoard II (terminal required)
  136. BRAIN   CP4BRN   Intertec SuperBrain.
  137. CPM3    CP4CP3   "generic": CP/M 3.0 (CP/M Plus) systems (terminal req'd)
  138. CPT85XX    CP4CPT     CPT-85xx word processors with CompuPak CP/M
  139. DELPHI  CP4DEL   Digicomp Delphi 100 (terminal required)
  140. DMII    CP4DM2   DECmate II with CP/M option
  141. GENER   CP4GEN   "generic": CPM 2.2 systems with IOBYTE (terminal req'd)
  142. HEATH   CP4H89   Heath/Zenith H89.
  143. KPII    CP4KPR   Kaypro-II (and 4; probably supports all Kaypro systems)
  144. MDI     CP4MDI   Morrow Decision I (terminal required)
  145. MIKKO   CP4MIK   MikroMikko
  146. MMDI    CP4UDI   Morrow Micro Decision I (terminal required)
  147. OSBRN1  CP4OSB   Osborne 1
  148. OSI     CP4OSI   Ohio Scientific
  149. ROBIN   CP4ROB   DEC VT180
  150. TELCON  CP4TEL   TELCON Zorba portable
  151. TRS80LB CP4TLB   TRS-80 model II with Lifeboat 2.25C CP/M Display
  152. TRS80PT CP4TPT   TRS-80 model II with Pickles + Trout CP/M Display
  153. VECTOR  CP4VEC   Vector Graphics.
  154. Z100    CP4Z00   Z-100 under CP/M-85
  155.  
  156. The "symbol" is used in CP4SYS.ASM for assembly purposes.  The filename
  157. shows where to find the .HEX file in KER: on CU20B, e.g. KER:CP4Z00.HEX.
  158.  
  159.  
  160. Please try out the new version and report any bugs to Info-Kermit@CU20B.
  161. Also, please feel free to add support to CP4SYS.ASM for systems that are
  162. not supported, and to make enhancements to those that are; for instance,
  163. most systems are still not able to send a 250ms BREAK signal.
  164.  
  165. Version 3.9A of CP/M-80 Kermit continues to be available as KER:CPM*.*
  166. on CU20B, but will eventually be phased out.
  167.