00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "ComediDevice.hpp"
00035 #include <rtt/os/fosi.h>
00036
00037 #include "comedi_internal.h"
00038
00039 extern "C"
00040 {
00041 #include <cerrno>
00042 }
00043
00044 namespace OCL
00045 {
00046 typedef unsigned int Data;
00047
00048 ComediDevice::ComediDevice( unsigned int minor )
00049 : d( new DeviceInfo( minor ) )
00050 {
00051 }
00052
00053 ComediDevice::~ComediDevice()
00054 {
00055 }
00056
00057
00058
00059 Data ComediDevice::getMaxData(unsigned int subd)
00060 {
00061 unsigned int channel = 0;
00062 if ( !d->it )
00063 return Data();
00064 return (Data) comedi_get_maxdata( d->it, subd, channel );
00065 }
00066
00067 int ComediDevice::getSubDeviceType(unsigned int subd)
00068 {
00069 if ( !d->it )
00070 return -1;
00071 return comedi_get_subdevice_type( d->it, subd );
00072 }
00073
00074 int ComediDevice::read( unsigned int subd, unsigned int chanNr,
00075 unsigned int range, unsigned int aref,
00076 ComediDevice::Data& value )
00077 {
00078 value = 0;
00079 if ( !d->it )
00080 return -1;
00081
00082 comedi_data_read( d->it, subd, chanNr, range, aref,
00083 ( lsampl_t* ) & value );
00084
00085 return 0;
00086 }
00087
00088 int ComediDevice::write( unsigned int subd, unsigned int chanNr,
00089 unsigned int range, unsigned int aref,
00090 const ComediDevice::Data& value)
00091 {
00092 if ( !d->it )
00093 return -1;
00094
00095 Data output = value;
00096
00097 comedi_data_write( d->it, subd, chanNr, range, aref, output );
00098
00099 return 0;
00100 }
00101
00102 ComediDevice::DeviceInfo* ComediDevice::getDevice()
00103 {
00104 return d.get();
00105 }
00106
00107 }