home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mskscripts / README.TXT < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  2. Newsgroups: comp.protocols.kermit.misc
  3. Subject: New modem scripts for MS-DOS Kermit 3.15
  4. Date: 28 Dec 1996 00:06:23 GMT  [Updated 20 Apr 1999]
  5. Organization: Columbia University
  6. Lines: 53
  7.  
  8. A small group of new modem scripts has been assembled for use with MS-DOS
  9. Kermit 3.15 Beta 12 or later.  These new scripts take advantage of many of
  10. the new features in the scripting language: block structure, MINPUT (INPUT
  11. with multiple simultaneous targets), local variables, and so on.  Some have
  12. been tested, some have not.  If you would like to try them out and report
  13. back to kermit@columbia.edu, here are the ones currently available:
  14.  
  15.  Name        Remarks
  16.   compaq.ksc  Compaq internal modems -- untested
  17.   hayes.ksc   Hayes 1200 and 2400 -- tested on 1200 only
  18.   generic.ksc Generic high-speed modem (RTS/CTS, fixed interface speed)
  19.   megahz.ksc  Megahertz X-Jack V.34 (XJ3144 or CC6144) -- untested
  20.   sport.ksc   US Robotics Sportster or Courier
  21.   supra.ksc   Supra or SupraSonic modems -- untested
  22.   t3000.ksc   Telebit T3000 (or T1600 or Qblazer) -- tested on T3000
  23.  
  24. The filenames are (of course) in DOS 8.3 format.  The new KSC filetype
  25. stands for "Kermit SCript".  We can't use .SCR any more because in the world
  26. of Windows, that stands for "SCReen saver".
  27.  
  28. A nice feature of the new scripts is that various parameters can be set
  29. by defining environment or Kermit variables.  These are:
  30.  
  31.   DIALPORT    - COM port to use for dialing (COM1, etc, default current port)
  32.   DIALSPEED   - Speed for dialing (default depends on script)
  33.   DIALMETHOD  - TONE or PULSE (modem's default method is used by default)
  34.   DIALRETRIES - Maximum times to redial the call (default 5)
  35.   DIALTIMEOUT - How long to wait for result from modem (default 90 seconds)
  36.  
  37. If any of these variables is not defined, an appropriate default is used.
  38.  
  39. To test these scripts, put them in the same directory with MSK315.EXE and
  40. make sure that is your current directory.  Then tell MSK315 to:
  41.  
  42.   define dial set port 1, take xxxx.ksc
  43.  
  44. Replace "port 1" with "port 2" or whatever port number your modem is
  45. connected to if it is not port 1, and replace "xxxx.ksc" with the name of
  46. the dialing script.  Then tell Kermit to DIAL in the normal way, e.g.:
  47.  
  48.   dial 7654321
  49.  
  50. Read the comments in each script for additional details.
  51.  
  52. - Frank
  53.