home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 4 Drivers / 04-Drivers.zip / gliff1.zip / GLIFFIC.TXT < prev   
Text File  |  1994-08-30  |  5KB  |  135 lines

  1. Gliffic Plus Mouse/Pen Set Driver for OS/2 2.1
  2. by Steve Flynn, C-Scape Computing, Australia
  3. Compuserve ID: 100351,2607
  4.  
  5. Portions of this driver are Copyright IBM
  6.  
  7. If you upload this driver to other services please make sure that this file
  8. is included in an UNMODIFIED form.
  9.  
  10.  
  11.       ****************>> This driver is FREEWARE <<****************
  12.  
  13.                (Not much of it about these days is there !)
  14.                (It seems like everyone wants at least $10 )
  15.                (for even the crappiest little utility     )
  16.  
  17. NOTE: This driver has only been tested under OS/2 Performance Beta v2.99, but
  18.       should work fine on previous versions of OS/2 2.1. However, if it does
  19.       not work or destroys your system, I take no responsibility whatsoever.
  20.  
  21.  
  22. INSTALLATION
  23. ~~~~~~~~~~~~
  24. These instructions assume that you have installed OS/2 2.1 and specified a
  25. generic serial pointing device like a Microsoft Mouse during installation.
  26. If you have not done this you may use the OS/2 Selective Installation program
  27. to add support for a serial mouse. Once this is done you need to follow the
  28. instructions below.
  29.  
  30. 1) This is very simple. Just copy the GLIFFIC.SYS driver to the \OS2 directory
  31.    on your boot drive.
  32.  
  33. 2) Find the section of the CONFIG.SYS file in the root directory of your boot
  34.    drive so that looks similar to this:
  35.  
  36.     DEVICE=C:\OS2\POINTDD.SYS
  37.     DEVICE=C:\OS2\MOUSE.SYS
  38.     DEVICE=C:\OS2\MDOS\VMOUSE.SYS
  39.  
  40.    Then change it to look like this:
  41.  
  42.     DEVICE=C:\OS2\POINTDD.SYS
  43.     DEVICE=C:\OS2\GLIFFIC.SYS
  44.     DEVICE=C:\OS2\MOUSE.SYS TYPE=GLIFFIC$
  45.     DEVICE=C:\OS2\MDOS\VMOUSE.SYS
  46.  
  47. 3) Thats all thats required.
  48.  
  49.  
  50. DEVICE RESOLUTION
  51. ~~~~~~~~~~~~~~~~~
  52. The Gliffic Plus has a Pad Area of 5inches x 4inches and a resolution of
  53. 5080 x 4064 according to its specification. I found mine to be a little larger
  54. than this. I have found it most convenient to allow at least a small margin
  55. and use a maximum resolution of 5000 x 4000. This allows the mouse cursor to
  56. be positioned right at the edge of the screen with greater ease. If you are
  57. lazy like me and don't like moving the puck a lot you can use an even larger
  58. margin. I use a 1inch margin on all sides and its quite comfortable. The puck
  59. movement still covers the whole screen but it only has to be moved in an area
  60. of 3inches x 2inches. See below for how to do this.
  61.  
  62.  
  63. COMMAND LINE PARAMETERS
  64. ~~~~~~~~~~~~~~~~~~~~~~~
  65. The GLIFFIC.SYS device driver will accept several command line parameters.
  66. All parameters are optional, default values shown below are used if the
  67. parameter is not specified. These parameters are as follows:
  68.  
  69. COM=
  70.    Specifies the serial port that the Gliffic Plus is attached to.
  71.    For example, COM=2. The default value is COM=1
  72.  
  73. RATE=
  74.    Specifies the report rate divisor. The report rate is the number of times
  75.    per second that the Gliffic Plus sends coordinate information to the PC.
  76.    The specification of the Gliffic Plus says that its maximum report rate
  77.    is 50 per second, probably way too much for most people. The fastest report
  78.    rate is acheived by using RATE=1 and the slowest by using RATE=9. The
  79.    default value is RATE=4, which seems pretty good to me and does not load
  80.    the system with too many mouse interrupts since the Gliffic Plus sends its
  81.    coordinate information CONTINUOUSLY, NOT just when you move it or press a
  82.    button.
  83.  
  84. LEFT=
  85.    The desired left hand side margin in device units. 1000 device units to the
  86.    inch. For example LEFT=500 would give a 1/2inch margin. Default LEFT=40.
  87.  
  88. TOP=
  89.    The desired top margin in device units. Default TOP=32.
  90.  
  91. RIGHT=
  92.    The desired right hand side margin in device units. Default RIGHT=40.
  93.  
  94. BOTTOM=
  95.    The desired bottom margin in device units. Default BOTTOM=32.
  96.  
  97.  
  98. The default margins are designed to give the pad an area of 5000 x 4000 and
  99. allow the cursor to be positioned at the edge of the screen easily. I strongly
  100. recommend that you DO NOT SET THE MARGINS TO 0.
  101.  
  102.  
  103. EXAMPLE
  104. ~~~~~~~
  105. My system uses the following settings in CONFIG.SYS
  106.  
  107.     DEVICE=C:\OS2\POINTDD.SYS
  108.     DEVICE=C:\OS2\GLIFFIC.SYS LEFT=1000 TOP=1000 RIGHT=1000 BOTTOM=1000
  109.     DEVICE=C:\OS2\MOUSE.SYS TYPE=GLIFFIC$
  110.     DEVICE=C:\OS2\MDOS\VMOUSE.SYS
  111.  
  112. This give me a Gliffic Plus attached to COM1 with a Report Rate Divisor of 4
  113. using a 1inch margin on all four sides.
  114.  
  115.  
  116. I hope this driver is of use to you. It's FREEWARE but if you really would like
  117. to send me a donation I will of course accept it. My address is
  118.     P.O. Box 377
  119.     Woolgoolga  2456
  120.     AUSTRALIA
  121.  
  122. Regards, Steve Flynn
  123.  
  124.  
  125. Revision Notes
  126. ~~~~~~~~~~~~~~
  127. Version 1.01     29th August 1994
  128.                  Fixed program error when no margins were specified on the
  129.                  command line. (Silly little bug, just a program label in the
  130.                  wrong place).
  131.                  Added my Compuserve ID to the driver sign on banner.
  132.  
  133. Version 1.0      17th August 1994
  134.                  Initial Release
  135.