/* ************************************************************** */ /* * MOVEZPARAM.H * This file contains parameters required by the measurement * program. * * Zachary Wolf * 2/2/00 */ /* Protection from multiple definitions */ #ifndef __MOVEZPARAM_HEADER #define __MOVEZPARAM_HEADER /* GPIB addresses */ #define GPIB_BOARD_ADDR 0 #define GPIB_CM2100_ADDR 01 #define GPIB_MC4_ADDR 14 /* Hall probe measurements */ #define MOVEZ_BOARD_ADDR GPIB_BOARD_ADDR #define MOVEZ_CM2100_ADDR GPIB_CM2100_ADDR #define MOVEZ_MC4_ADDR GPIB_MC4_ADDR #define MOVEZ_DEVICE_TYPE MOVEZ_CM2100_CM2100 #define MOVEZ_CM2100_NUM_STEPS_PER_REV 25000 #define MOVEZ_CM2100_METERS_PER_REV .0508 #define MOVEZ_MC4_AXIS 'X' #define MOVEZ_ACC .4 #define MOVEZ_VEL .1 /* End protection */ #endif