00001 /*************************************************************************** 00002 di154.h - Linux driver for DI-154 series 00003 acquisition device manufactured by 00004 DATAQ Instruments, Inc. 00005 ------------------- 00006 begin : Mon Aug 2 2004 00007 author : Ioan S. Popescu 00008 00009 Copyright (C) 2004 DATAQ Instruments, Inc. <develop@dataq.com> 00010 00011 This program is free software; you can redistribute it and/or 00012 modify it under the terms of the GNU General Public License 00013 as published by the Free Software Foundation; either 00014 version 2 of the License, or (at your option) any later 00015 version. 00016 00017 This program is distributed in the hope that it will be useful, 00018 but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 GNU General Public License for more details. 00021 00022 You should have received a copy of the GNU General Public License 00023 along with this program; if not, write to the Free Software 00024 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00025 ***************************************************************************/ 00026 00027 #ifndef DI154_H 00028 #define DI154_H 1 00029 00030 #include "../di194/di194.h" 00031 00033 class di154_dsdk : public di194_dsdk 00034 { 00035 public: 00036 di154_dsdk(); 00037 00038 private: 00040 00043 di154_dsdk(const di154_dsdk ©){}; 00044 00046 const short int convert(const u_int8_t *const di_data, 00047 const u_int8_t num_chan); 00048 }; 00049 00050 #endif 00051