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

extbridgeportio.c File Reference

#include "extintf.h"
#include "parport.h"

Include dependency graph for extbridgeportio.c:

Include dependency graph

Go to the source code of this file.

Functions

int extDioInit (const char *stuff)
int extDioQuit ()
int extDioMaxInputs ()
int extDioMaxOutputs ()
int extDioRead (int index, int *value)
int extDioWrite (int index, int value)
int extDioCheck (int index, int *value)
int extDioByteRead (int index, unsigned char *byte)
int extDioShortRead (int index, unsigned short *sh)
int extDioWordRead (int index, unsigned int *word)
int extDioByteWrite (int index, unsigned char byte)
int extDioShortWrite (int index, unsigned short sh)
int extDioWordWrite (int index, unsigned int word)
int extDioByteCheck (int index, unsigned char *byte)
int extDioShortCheck (int index, unsigned short *sh)
int extDioWordCheck (int index, unsigned int *word)
int extAioInit (const char *stuff)
int extAioQuit ()
int extAioMaxInputs ()
int extAioMaxOutputs ()
int extAioRead (int index, double *volts)
int extAioWrite (int index, double volts)
int extAioCheck (int index, double *volts)


Function Documentation

int extAioCheck int    index,
double *    volts
 

Definition at line 136 of file extbridgeportio.c.

00137 {
00138   *volts = 0.0;
00139 
00140   return 0;
00141 }

int extAioInit const char *    stuff
 

Definition at line 104 of file extbridgeportio.c.

00105 {
00106   return 0;
00107 }

int extAioMaxInputs void   
 

Definition at line 114 of file extbridgeportio.c.

00115 {
00116   return 0;
00117 }

int extAioMaxOutputs void   
 

Definition at line 119 of file extbridgeportio.c.

00120 {
00121   return 0;
00122 }

int extAioQuit void   
 

Definition at line 109 of file extbridgeportio.c.

Referenced by cleanup_module().

00110 {
00111   return 0;
00112 }

int extAioRead int    index,
double *    volts
 

Definition at line 124 of file extbridgeportio.c.

00125 {
00126   *volts = 0.0;
00127 
00128   return 0;
00129 }

int extAioWrite int    index,
double    volts
 

Definition at line 131 of file extbridgeportio.c.

00132 {
00133   return 0;
00134 }

int extDioByteCheck int    index,
unsigned char *    byte
 

Definition at line 85 of file extbridgeportio.c.

00086 {
00087   return pptDioByteCheck(index, byte);
00088 }

int extDioByteRead int    index,
unsigned char *    byte
 

Definition at line 55 of file extbridgeportio.c.

00056 {
00057   return pptDioByteRead(index, byte);
00058 }

int extDioByteWrite int    index,
unsigned char    byte
 

Definition at line 70 of file extbridgeportio.c.

00071 {
00072   return pptDioByteWrite(index, byte);
00073 }

int extDioCheck int    index,
int *    value
 

Definition at line 50 of file extbridgeportio.c.

00051 {
00052   return pptDioCheck(index, value);
00053 }

int extDioInit const char *    stuff
 

Definition at line 20 of file extbridgeportio.c.

00021 {
00022   return pptDioInit(stuff);
00023 }

int extDioMaxInputs void   
 

Definition at line 30 of file extbridgeportio.c.

00031 {
00032   return pptDioMaxInputs();
00033 }

int extDioMaxOutputs void   
 

Definition at line 35 of file extbridgeportio.c.

00036 {
00037   return pptDioMaxOutputs();
00038 }

int extDioQuit void   
 

Definition at line 25 of file extbridgeportio.c.

Referenced by cleanup_module(), and main().

00026 {
00027   return pptDioQuit();
00028 }

int extDioRead int    index,
int *    value
 

Definition at line 40 of file extbridgeportio.c.

00041 {
00042   return pptDioRead(index, value);
00043 }

int extDioShortCheck int    index,
unsigned short *    sh
 

Definition at line 90 of file extbridgeportio.c.

00091 {
00092   return pptDioShortCheck(index, sh);
00093 }

int extDioShortRead int    index,
unsigned short *    sh
 

Definition at line 60 of file extbridgeportio.c.

00061 {
00062   return pptDioShortRead(index, sh);
00063 }

int extDioShortWrite int    index,
unsigned short    sh
 

Definition at line 75 of file extbridgeportio.c.

00076 {
00077   return pptDioShortWrite(index, sh);
00078 }

int extDioWordCheck int    index,
unsigned int *    word
 

Definition at line 95 of file extbridgeportio.c.

00096 {
00097   return pptDioWordCheck(index, word);
00098 }

int extDioWordRead int    index,
unsigned int *    word
 

Definition at line 65 of file extbridgeportio.c.

00066 {
00067   return pptDioWordRead(index, word);
00068 }

int extDioWordWrite int    index,
unsigned int    word
 

Definition at line 80 of file extbridgeportio.c.

00081 {
00082   return pptDioWordWrite(index, word);
00083 }

int extDioWrite int    index,
int    value
 

Definition at line 45 of file extbridgeportio.c.

00046 {
00047   return pptDioWrite(index, value);
00048 }


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