home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 1: Collection A / 17Bit_Collection_A.iso / files / 68.dms / in.adf / amigaterm.doc < prev    next >
Encoding:
Text File  |  2008-06-07  |  3.0 KB  |  87 lines

  1. /**************************************************************************
  2.  *
  3.  *  Amiga Term version 1.1A (12-Jan-86)
  4.  *  ===================================
  5.  *
  6.  *  A 300-9600 baud ASCII/XMODEM terminal program
  7.  *
  8.  *  Written by Michael Mounier
  9.  *     Mods by J S Plegge
  10.  *             J V Nangano
  11.  *
  12.  *
  13.  *  Previous mods:
  14.  *     Rearranged menus
  15.  *     Default to 1200 baud
  16.  *     Dialer with phone number and modem prefix (ATDT) file
  17.  *     No longer tries to display non-printable chars
  18.  *     Text conversion on ASCII send/capture
  19.  *       (CR <=> LF, and non-printable chars are ignored)
  20.  *     Text conversion on XMODEM send/receive
  21.  *       (CR <=> LF, and non-printable chars are changed to spaces)
  22.  *     Bug fix in XMODEM block count display
  23.  *     CR is ignored in term mode; LF is treated as newline
  24.  *     Some code clean-up
  25.  *     Little nicer XMODEM user interface
  26.  *     NEWSIZE no longer clears the screen
  27.  *     XMODEM file display on send/receive
  28.  *
  29.  *  Suggested Improvements:
  30.  *     Nicer XMODEM status display
  31.  *     Function keys
  32.  *     Add a BELL
  33.  *     XMODEM pad strip on the fly
  34.  *     80-column lines
  35.  *
  36.  **************************************************************************/
  37.  
  38.  About the dialer:
  39.  
  40.    Aterm 1.1A looks for a file named "Aterm.phone" on the default directory
  41.  to get the dialer information.  Create this file with ED.  The first line
  42.  should contain the modem dial prefix (ATDT for Hayes, for instance), 10
  43.  characters max.  After that, enter 2 lines for each service.  The first is
  44.  the service name, and the second is the phone number.  The name will show up
  45.  on the menu.  Name and number are limited to 20 characters each (which
  46.  should be plenty).  You can enter up to 10 service names/numbers.
  47.  
  48.    Here's an example "Aterm.phone" file:
  49.  
  50.                       ATDT
  51.                       Delphi
  52.                       423-9120
  53.                       Tymnet
  54.                       731-8002
  55.                       CI$
  56.                       241-3102
  57.                       Fido
  58.                       232-6881
  59.  
  60.  
  61.  
  62.    Note that there's not a lot of error checking done here (it would help
  63.  if I really knew C!), and Aterm 1.1A will simply abort if it can't find
  64.  this file.
  65.  
  66.  /**************************************************************************/
  67.  
  68.  About text conversions:
  69.    
  70.    The conversion of LF to CR on XMODEM upload means that you don't have to
  71.  worry about the 255 character line limit on text XUPs to Delphi.  It will
  72.  translate each CR to CR/LF internally, so don't worry about it.  The only
  73.  (possible) problem with this is that a file will grow by 1 XMODEM block
  74.  each trip to and from Delphi.  Not a very common thing to do, but it is
  75.  something to keep in mind.
  76.  
  77.    The conversion of CR to LF and non-printables to space on XMODEM download
  78.  means that you'll be able to ED files that you download like this.
  79.  
  80.    ASCII capture/send conversions work much the same way.
  81.  
  82.  /**************************************************************************/
  83.  
  84.  (JSP - 01/12/86)
  85.  
  86.  
  87.