You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gpib.h 404 B

123456789101112131415161718
  1. #ifndef GPIB_H
  2. #define GPIB_H
  3. int gpib_init(int fd);
  4. int gpib_addr(int fd, int addr);
  5. int keithley_init(int fd);
  6. int keithley_current(int fd, double amps);
  7. double keithley_read(int fd);
  8. int keithley_off(int fd);
  9. int keithley2002_init(int fd);
  10. int keithley2002_init2(int fd);
  11. int keithley2002_init_volts(int fd);
  12. double keithley2002_read(int fd);
  13. double keithley2002_read2(int fd, double* tx);
  14. #endif