Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields   Globals  

ppmc_aio.c

Go to the documentation of this file.
00001 /*
00002   ppmc_aio.c
00003 
00004   analog input functions for PPMC boards.
00005   
00006   Modification history:
00007 
00008   10 oct 2000 eek.  split out ppmc_aio from other ppmc functions
00009   this is likely to never be supported, but it's there in the interface
00010   so why not increase compile times a little
00011 
00012   */
00013 
00014 #include "ppmc.h"
00015 
00016 int ppmcAioInit(const char * stuff)
00017 {
00018   return 0;
00019 }
00020 
00021 int ppmcAioQuit()
00022 {
00023   return 0;
00024 }
00025 
00026 int ppmcAioMaxInputs()
00027 {
00028   return 0;
00029 }
00030 
00031 int ppmcAioMaxOutputs()
00032 {
00033   return 0;
00034 }
00035 
00036 int ppmcAioRead(int index, double *volts)
00037 {
00038   return 0;
00039 }
00040 
00041 int ppmcAioWrite(int index, double volts)
00042 {
00043   return 0;
00044 }
00045 
00046 int ppmcAioCheck(int index, double *volts)
00047 {
00048   return 0;
00049 }

Generated on Sun Dec 2 15:27:41 2001 for EMC by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001