home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / vdocs.zip / VC11E < prev    next >
Text File  |  1993-12-16  |  6KB  |  151 lines

  1. .TOPIC:
  2. Interfacing VBBS with Digiboards
  3.                                         VBBS 6.12 Documentation --11-E-1
  4.  
  5.            ╔════════════════════════════════════════════════════════════╗
  6.            ║ CHAPTER 11  ANNEX E    INTERFACING VBBS WITH DIGIBOARDS    ║
  7.            ╚════════════════════════════════════════════════════════════╝
  8.  
  9.            Below is a sample DOS setup of a Digiboard running under
  10.            DesqView.
  11.  
  12.            Equipment Used:
  13.  
  14.            1. DigiBoard Intelligent PC/XE Asynchronous Communication Board
  15.            2. DigiBoard DOS Driver (Digiware DOS, AIO, OS2, Windows Async
  16.               Driver)
  17.            3. Running under DOS 6, Desqview, and QEMM 386 v7.01
  18.            4. 4 External Infotel 9600 v42 bis (set at 19200 baud in vbbs
  19.               only)
  20.            5. Vbbs 6.10
  21.  
  22.                                                                
  23.            Steps To Install:
  24.  
  25.            1. Install the DigiBoard drivers to the hard drive
  26.               (I use C:\DIGI), by copying the DOS Driver diskette.
  27.  
  28.            2. Run XIDOSCFG, to configure the DigiBoard ports.
  29.               You should see a menu that looks something like this:
  30.  
  31.    Board   Type   Window   Memory   I/O   IRQ   # Brd   Start   Driver
  32.      #             Size    Window   Port   #    Chnls   Chnl#   Support
  33.      1     PC/Xe   64k     D0000h   0320   10      4      1     DOS/EBIOS
  34.  
  35.            Configuration Selections:               Use Arrow Keys < >
  36.  
  37.            Q)uit  C)hannel Parameters  O)ptions  A)dd Board  R)emove Board
  38.  
  39.     2A. Use the arrow keys to set up the I/O Port, IRQ, and the like
  40.     to match the settings on your board.  The settings above show an
  41.     example.
  42.  
  43.     IMPORTANT NOTE: You *MUST*  start at Channel 1. If you do not,
  44.                     you will not see all of the ports!
  45.  
  46.  
  47.     2B. Choose (C)hannel Parameters to set the proper speed of the ports,
  48.         You should see a menu that looks like something like this:
  49.  
  50.                           BOARD 1 PARAMETERS
  51.           CHANL    BAUD    MODE    RX FLOW    TX FLOW    NAME
  52.             1      9600    8,N,1    NONE      DSR/CTS    COM5
  53.             2      9600    8,N,1    NONE      DSR/CTS    COM6
  54.             3      9600    8,N,1    NONE      DSR/CTS    COM7
  55.             4      9600    8,N,1    NONE      DSR/CTS    COM8
  56.  
  57.             Q)uit  S)et All                Use Arrow Keys < >
  58.  
  59.                                         VBBS 6.12 Documentation --11-E-2
  60.  
  61.  
  62.          You can use the arrow keys to move to each column that needs
  63.          to be adjusted, such as the Baud Rate.  Once you set the first
  64.          one, you can choose S)et All to adjust the rest of the channels
  65.          to match.
  66.  
  67.          3. Add the following line to your CONFIG.SYS:
  68.             DEVICE=C:\DIGI\XIDOS5.SYS
  69.  
  70.          4. You must exclude the RAM Address you choose in the XIDOSCFG
  71.          (called Memory Window) in your memory manager.  In QEMM, add:
  72.          X=D000-DFFF to the command line; which excludes D000-DFFF from
  73.          use.
  74.  
  75.         5. Run VCONFIG and configure the new channels.  Instead of choosing
  76.            a COMx port, choose the Digiboard Port x, where x is the number
  77.            of the port.
  78.   
  79.         NOTE: Please erase (zero out - put all zeros in the field) the
  80.         Address and IRQ fields.
  81.  
  82.         6. TEST, TEST, TEST!
  83.  
  84.         At this point, everything should be configured properly. Included
  85.         are a CONFIG.SYS and AUTOEXEC.BAT for reference, with comments after
  86.         each file, referencing the line by number.
  87.  
  88.         ----------------------------------------------------------------
  89.         CONFIG.SYS
  90.  
  91.         DEVICE=C:\QEMM\DOSDATA.SYS
  92.         DEVICE=C:\QEMM\QEMM386.SYS X=D000-DFFF R:1 RAM st:m
  93.         DEVICE=C:\QEMM\DOS-UP.SYS @C:\QEMM\DOS-UP.DAT
  94.         DEVICE=C:\QEMM\LOADHI.SYS /R:2 C:\DIGI\XIDOS5.SYS
  95.         DEVICE=C:\QEMM\LOADHI.SYS /R:2 C:\QEMM\QDPMI.SYS SWAPFILE=DPMI.SWP
  96.         SWAPSIZE=1024
  97.         DEVICE=C:\QEMM\LOADHI.SYS /R:1 C:\DOS\SETVER.EXE
  98.         DEVICE=C:\QEMM\LOADHI.SYS /R:2 C:\DOS\ANSI.SYS
  99.         FILES=30
  100.         BUFFERS = 30
  101.         STACKS=9,256
  102.         SHELL=c:\qemm\loadhi.com /r:2 C:\command.com C:\ /P
  103.  
  104.                                         VBBS 6.12 Documentation --11-E-3
  105.  
  106.         Comments:
  107.         ---------
  108.        1. This prepares the system for loading parts of DOS into upper
  109.           memory.
  110.        2. Load the memory manager, excluding the Memory Window from
  111.           XIDOSCFG
  112.        3. Continued from line 1
  113.        4. Load the DigiBoard driver
  114.        5. Continued from line 1
  115.        6. Load DOS' SETVER for any old programs
  116.        7. Load DOS' ANSI driver
  117.        8. Set FILES
  118.        9. Set BUFFERS
  119.        10.Set STACKS (Usually used with Windows)
  120.        11.Set the SHELL statement.
  121.  
  122.        ---------------------------------------------------------
  123.        AUTOEXEC.BAT
  124.  
  125.        C:\QEMM\LOADHI /R:2 C:\DOS\SMARTDRV.EXE
  126.        @ECHO OFF
  127.        PROMPT TIME IS: $t$_DATE IS:$d $p$g
  128.        SET TEMP=C:\TEMP
  129.        SET PATH=C:\QEMM;C:\DOS;C:\UTILITY;C:\VBBS;C:\XTGOLD
  130.        CD\DOS
  131.        c:\qemm\loadhi /r:2 doskey
  132.        C:\QEMM\LOADHI /R:2 SHARE
  133.        cd\
  134.        cls
  135.        dv
  136.  
  137.        Comments:
  138.        ---------
  139.        1. Load SMARTDRV cache
  140.        2. Turn off the local Echo
  141.        3. Set the DOS PROMPT
  142.        4. Set the TEMP directory
  143.        5. Set the PATH
  144.        6. Change to the DOS directory for next few commands
  145.        7. Load DOSKEY high
  146.        8. Load SHARE high
  147.        9. Change to the root
  148.        10.Clear the screen
  149.        11.Start Desqview (Auto-Start VBBS)
  150.  
  151.