home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / BBS / VBBS550.ZIP / VFOSSIL.DOC < prev    next >
Text File  |  1992-06-03  |  4KB  |  113 lines

  1.  
  2.  
  3.  
  4.                                 VFOSSIL.DOC
  5.  
  6.                         Using a Fossil Driver with VBBS
  7.  
  8.  
  9.          The fossil driver can open up a whole new world to VBBS.
  10.  
  11.          The "standard" serial driver which comes with VBBS is
  12.          not able to allow IRQ sharing between COM ports.
  13.          This is not so much a limitation in the serial driver, as it
  14.          is a limitation of the underlying operating environment.
  15.  
  16.          A FOSSIL driver, on the other hand, can handle 2 or more
  17.          serial ports using the same IRQ line. In fact, a FOSSIL
  18.          can be used to control up to 8 ports. It can be "programmed"
  19.          to use almost any serial board in existance.
  20.          
  21.          For the purposes of this document, we shall refer to the
  22.          X00 and BNU fossil drivers. If you're new to fossil drivers,
  23.          they are a "standard" way for programs to communicate with
  24.          serial ports, and you only need one installed on your system
  25.          in order to make use of it.
  26.  
  27.          X00 is one type of fossil driver that loads thru CONFIG.SYS.
  28.          BNU is a another type of fossil driver that loads thru AUTOEXEC.BAT.
  29.          Both programs do roughyl the same thing, and yu have your choice of
  30.          which one you wish to use.
  31.          
  32.          ** Number of simultaneous open ports **
  33.          ***************************************
  34.          
  35.          The "basic" CONFIG.SYS install line for X00 looks like:
  36.  
  37.          DEVICE=X00.SYS
  38.  
  39.          The "basic" AUTOEXEC.BAT install line for BNU is:
  40.  
  41.          BNU
  42.  
  43.          By default, a fossil will assume you wish to have only
  44.          ONE COM port open at any given moment.
  45.          
  46.          This doesnt specify WHICH port (COM1, COM2, COM3, etc),
  47.          but specifies the maximum number of simultaneous open
  48.          ports.
  49.          
  50.          Each Port you request is like a "data channel," corresponding
  51.          to your VBBS data channels.
  52.  
  53.          It is possible to request that the fossil make more ports
  54.          available to you. 
  55.          
  56.          For more detailed information on the driver, consult 
  57.          the fossil documentation.
  58.  
  59.  
  60.          * VBBS Set Up *
  61.          ***************
  62.  
  63.          Set up your VBBS Data Channels as you normally would.
  64.          
  65.          ***********************************************************
  66.          
  67.          VBBS - 2 user system example
  68.          ----------------------------
  69.          Ch 1 to be on COM1
  70.          Ch 2 to be on COM2
  71.          ------------------
  72.          X00:
  73.          DEVICE=X00.SYS 0=COM1 1=COM2
  74.          BNU:
  75.          BNU /P=2
  76.          ---------------------------------------
  77.          VCONFIG: Set Channel 1 to COM1
  78.                   Set Channel 2 to COM2
  79.          ***********************************************************
  80.          
  81.          VBBS - 2 user system example
  82.          ----------------------------
  83.          Ch 1 to be on COM2
  84.          Ch 2 to be on COM3
  85.          ------------------
  86.          X00:
  87.          DEVICE=X00.SYS 0=COM2 1=COM3
  88.          BNU:
  89.          BNU /P=2
  90.          ---------------------------------------
  91.          VCONFIG: Set Channel 1 to COM2
  92.                   Set Channel 2 to COM3
  93.          ***********************************************************
  94.          
  95.          VBBS - 4 user system example
  96.          ----------------------------
  97.          Ch 1 to be on COM1
  98.          Ch 2 to be on COM2
  99.          Ch 3 to be on COM3
  100.          Ch 4 to be on COM4
  101.          ------------------
  102.          X00:
  103.          DEVICE=X00.SYS 0=COM1 1=COM2 2=COM3 3=COM4
  104.          BNU:
  105.          BNU /P=4
  106.          ---------------------------------------
  107.          VCONFIG: Set Channel 1 to COM1
  108.                   Set Channel 2 to COM2
  109.                   Set Channel 3 to COM3
  110.                   Set Channel 4 to COM4
  111.          ***********************************************************
  112.          
  113.