2009-07-10 16:11:02 -04: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 17:45:42 -04:00
|
|
|
int keithley_current(int fd, double amps);
|
|
|
|
double keithley_read(int fd);
|
2009-07-10 16:11:02 -04:00
|
|
|
int keithley_off(int fd);
|
|
|
|
|
2009-07-20 15:26:42 -04:00
|
|
|
int keithley2002_init(int fd);
|
|
|
|
int keithley2002_init2(int fd);
|
2010-07-08 17:27:49 -04:00
|
|
|
int keithley2002_init_volts(int fd);
|
2009-07-20 15:26:42 -04:00
|
|
|
double keithley2002_read(int fd);
|
|
|
|
double keithley2002_read2(int fd, double* tx);
|
2009-07-10 16:11:02 -04:00
|
|
|
#endif
|
|
|
|
|