/* ************************************************************** */ /* * BHALLPARAM.H * This file contains parameters required by the measurement * program. * * Zachary Wolf * 1/28/00 */ /* Protection from multiple definitions */ #ifndef __BHALLPARAM_HEADER #define __BHALLPARAM_HEADER /* GPIB addresses */ #define GPIB_BOARD_ADDR 0 #define GPIB_B9900_ADDR 17 #define GPIB_GP3_ADDR 16 #define GPIB_LS450_ADDR 15 /* Hall probe measurements */ #define BHALL_BOARD_ADDR GPIB_BOARD_ADDR #define BHALL_B9900_ADDR GPIB_B9900_ADDR #define BHALL_GP3_ADDR GPIB_GP3_ADDR #define BHALL_LS450_ADDR GPIB_LS450_ADDR #define BHALL_DEVICE_TYPE BHALL_LS450 #define BHALL_B9900_CHAN 1 /* End protection */ #endif