home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / msvibm.zip / UTILS / XONXOFF.HLP < prev    next >
Text File  |  1994-10-11  |  1KB  |  33 lines

  1. FILE XONXOFF.HLP          SERIAL PRINTER DRIVER                 September 1991
  2.  
  3. XONXOFF.COM is a tiny public domain serial printer driver for MS-DOS computers,
  4. written by Frank Whaley in 1989 and found by Joe Doupnik in the mirror/printer
  5. directory on wuarchive.wustl.edu.
  6.  
  7. MS-DOS allows you to define a COM port as a printer device using the MODE
  8. command, for use with a serial printer, for example:
  9.  
  10.   MODE COM1:9600,N,8,1,P
  11.   MODE LPT1:=COM1
  12.  
  13. However, MS-DOS does not provide flow control between itself and a serial
  14. printer.  MS-DOS Kermit uses standard DOS calls for printer operations (print
  15. screen, transparent print, autoprint, etc).  A common complaint is that these
  16. print operations do not work well with serial printers -- characters are lost
  17. or garbled, etc.
  18.  
  19. XONXOFF.COM provides software (Xon/Xoff) flow control for serial printers.  It
  20. works only for COM1 only.  It installs itself as a terminate-and-stay-resident
  21. (TSR) program, intercepts DOS interrupt 17H, leaves the port baud rate and
  22. other parameters as found (so you must set them with the MODE command), and
  23. contains no provisions for de-installation.
  24.  
  25. Run it from your AUTOEXEC.BAT file after giving the necessary MODE commands,
  26. for example:
  27.  
  28.   MODE COM1:9600,N,8,1,P
  29.   MODE LPT1:=COM1
  30.   C:\KERMIT\UTILS\XONXOFF
  31.  
  32. (End of XONXOFF.HLP)
  33.