home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / windr440.zip / windrive.zip / WinDriver / plx / iop480 / files.txt
File List  |  2000-03-30  |  3KB  |  67 lines

  1. IOP480 directory contents:
  2.  
  3. LIB\IOP480_LIB.C - Implementation of IOP480_LIB.H.
  4.  
  5. LIB\IOP480_LIB.H - Library for 'WinDriver for PLX IOP 480' API. 
  6.     The basic idea is to get a handle for the board
  7.     with IOP480_Open() and use it in the rest of the program
  8.     when calling IOP480_xxxx() functions.  Call IOP480_Close() when done.
  9.  
  10. IOP480_DIAG\IOP480_DIAG.C - A simple diagnostics program that lets you access the
  11.     PLX 9054 registers and local memory. 
  12.     o This program is meant to be used as an example for using the IOP480_LIB.H API,
  13.       you may use it as a skeleton for your driver, or 'cut & paste' parts
  14.       of it into your device driver code.
  15.     o For a more advanced monitor program, use the standard PLXMON.EXE
  16.       from PLX.
  17.  
  18.       The source code for this project was generated by WinDriver Wizard.
  19. To compile this application, you will need a Win32 compiler.
  20.  
  21. Files:
  22.   lib directory:
  23.   lib\iop480_lib.c
  24.       Library for 'WinDriver for PLX 9054' API. 
  25.       The basic idea is to get a handle for the board
  26.       with IOP480_Open() and use it in the rest of the program
  27.       when calling IOP480_xxxx() functions.  Call IOP480_Close() when done.
  28.   lib\iop480_lib.h
  29.       Header file of iop480_lib.c library.
  30.  
  31.   iop480_diag directory:
  32.   iop480_diag\iop480_diag.c
  33.       A simple diagnostics program that lets you access the
  34.       PLX 9054 registers and local memory. 
  35.       o This program is meant to be used as an example for using the 
  36.         iop480_lib.h API.
  37.         You may use it as a skeleton for your driver, or 'cut & paste' 
  38.         parts of it into your device driver code.
  39.       o For a more advanced monitor program, use the standard PLXMON.EXE
  40.         from PLX.
  41.   iop480_diag\iop480_diag.mak
  42.       MS-Visual C++ 4.0 (and above) compatible make file.
  43.   iop480_diag\iop480_diag.mdp
  44.       MS-Visual C++ 4.0 (and above) compatible project file.
  45.   files.txt
  46.       Describes the files generated.
  47.  
  48. Compiling this project:
  49.   If you are using MS-Visual C++, then open the iop480_diag.mdp project file, and
  50.   compile.
  51.  
  52.   If using a different compiler:
  53.   - Create a new project. Choose console mode project.
  54.   - Include the following files in the project:
  55.       lib\iop480_lib.c
  56.       iop480_diag\iop480_diag.c
  57.       \windrvr\samples\shared\pci_diag_lib.c
  58.       \windrvr\samples\shared\print_struct.c
  59.  
  60. Converting to a GUI application:
  61.   This sample was written as a console mode application (rather than
  62.   a GUI application) that uses standard input and standard output.
  63.   This was done in order to simplify the source code. You may change it
  64.   into a GUI application by removing all calls to printf() and scanf()
  65.   functions, and calling MessageBox() instead.
  66.  
  67.