2009-07-10 20:11:02 +00:00
|
|
|
#ifndef GPIB_H
|
|
|
|
|
#define GPIB_H
|
|
|
|
|
|
|
|
|
|
int gpib_init(int fd);
|
|
|
|
|
int gpib_addr(int fd, int addr);
|
|
|
|
|
|
|
|
|
|
int keithley_init(int fd);
|
2009-07-10 21:45:42 +00:00
|
|
|
int keithley_current(int fd, double amps);
|
|
|
|
|
double keithley_read(int fd);
|
2009-07-10 20:11:02 +00:00
|
|
|
int keithley_off(int fd);
|
|
|
|
|
|
2009-07-20 19:26:42 +00:00
|
|
|
int keithley2002_init(int fd);
|
|
|
|
|
int keithley2002_init2(int fd);
|
2010-07-08 21:27:49 +00:00
|
|
|
int keithley2002_init_volts(int fd);
|
2009-07-20 19:26:42 +00:00
|
|
|
double keithley2002_read(int fd);
|
|
|
|
|
double keithley2002_read2(int fd, double* tx);
|
2009-07-10 20:11:02 +00:00
|
|
|
#endif
|
|
|
|
|
|