home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / comm / dmode104.zip / DMODE.DOC next >
Text File  |  1993-06-01  |  3KB  |  80 lines

  1.  
  2.  
  3. DMODE
  4. version 1.04
  5. 01-Jun-93
  6.  
  7. (c) 1993, David C. McMasters, All Rights Reserved
  8.  
  9. This product is distributed as SHAREWARE.  Payment is expected for
  10. continued use of this product after the 30 day evaluation period.
  11.  
  12. Send $5.00 US, check or currency only, to:
  13.  
  14.     David C. McMasters
  15.     1528 James Street
  16.     Monroeville, PA  15146
  17.  
  18.  
  19.  
  20. DMODE is a variation of the DOS MODE command dedicated to servicing the
  21. serial ports on a PC compatible computer.  DMODE does not support the
  22. video features of MODE.  What DMODE does do is allow the user to program
  23. baud rates from 50 to 115200 bps.  Additionally, and perhaps more
  24. importantly, DMODE allows you to check the current configuration of your
  25. serial ports.
  26.  
  27. COM3 and COM4 are also supported.  The 'standard' port addresses are
  28. assumed for these ports (3E8h and 2E8h).  If your system uses addresses
  29. other than these, write me with the addresses used and a blank diskette
  30. and the $5.00 registration fee and I will send you a modified version of
  31. DMODE.
  32.  
  33. The syntax of the DMODE utility is:
  34.  
  35.          >DMODE comX:baud,parity,data,stop
  36.  or
  37.          >DMODE comX
  38.  
  39. comX:    communication port to be set or checked (1,2,3,4);
  40. baud:    115200, 57600, 38400, 19200, 9600, 7200, 4800, 3600,
  41.          2400, 2000, 1800, 1200, 600, 300, 150, 134.5, 75, 50;
  42. parity:  none, even or odd (N, E, O);
  43. data:    5, 6, 7 or 8 data bits;
  44. stop:    1 or 2 stop bits.
  45.  
  46. Ex.  To select 19200 bps, no parity, 8 data bits and 1 stop bit on com1,
  47.  
  48.         >DMODE com1:19200,N,8,1
  49.  
  50. To check the current settings of a communication port, issue the DMODE
  51. with just the com port.
  52.  
  53.         >DMODE com2
  54.  
  55. To check the settings of all com ports on your system, type >DMODE *.
  56.  
  57. You may optionally specify the baud rate with just the first two
  58. characters (as with DOS MODE), i.e. 19200 may be represented as 19 and
  59. 134.5 as 13.
  60.  
  61. Typing DMODE by itself on the command line will print a usage screen so that
  62. you don't have to constantly refer to this document.
  63.  
  64.  
  65. What's New?
  66.  
  67. 1.04  01-Jun-93  Fix baud rate list in online help.
  68.  
  69. 1.03  20-Sep-91  Add 'dmode *' feature which shows the status of all ports
  70.                  present.
  71.  
  72. 1.02  24-Jul-91  Fixed a bug which overwrote a register in the UART.
  73.  
  74. 1.01  24-Jul-91  Add 115200 bps, correct 56000 to 57600, and,
  75.   No Release     unfortunately, removed 110 bps.  In order to be somewhat
  76.          compatible with DOS MODE, DMODE supports two character
  77.          baud rate names.  115200 and 110 share the same first two
  78.          characters.  If you really need 110 bps, let me know.
  79.  
  80. 1.00  23-Jul-91  First release.  No Errors!!!!