21 explicit PCI3343A(
unsigned int Addr);
22 PCI3343A(
unsigned int Addr, uint8_t EnableCh);
25 void SetVoltage(
double V1,
double V2,
double V3,
double V4);
32 const unsigned int ADDR_BASE;
33 const unsigned int ADDR_DACDATA_LO;
34 const unsigned int ADDR_DACDATA_HI;
35 const unsigned int ADDR_CHSET;
36 const unsigned int ADDR_CONVMODE;
37 const unsigned int ADDR_OUTMODE;
38 const unsigned int ADDR_DIO;
41 void SetAllEnable(
bool flag);
42 void SetOutEnable(
bool flag);
43 void ExecOutput(
void);
44 void SelectCH(
unsigned int ch);
45 void SetDACdata(uint16_t data);
46 void SetAllZero(
void);
47 static uint16_t VoltToDacData(
double Vout);
48 static uint8_t Get2byteHi(uint16_t in);
49 static uint8_t Get2byteLo(uint16_t in);
PCI-3343A入出力クラス Interface社製PCI-3343Aのための入出力機能を提供します。
Definition PCI-3343A.hh:19
~PCI3343A()
デストラクタ
Definition PCI-3343A.cc:77
void SetVoltage(double V1, double V2, double V3, double V4)
指定した電圧を出力する関数
Definition PCI-3343A.cc:86
PCI3343A()
空コンストラクタ
Definition PCI-3343A.cc:63