📄 user_params.h
字号:
// user_params.h
//
// ver 6.29
// dec 30, 2000
// added cal_rx parameter
//
#define DEFAULT_GPIB_ADDRESS 14
#define DEFAULT_COM_PORT 0
#define DEFAULT_CAL_GSM 1
#define DEFAULT_CAL_DCS 1
#define DEFAULT_CAL_PCS 0
#define DEFAULT_CAL_GSM850 0
#define DEFAULT_CAL_RX 1
#define GSM_DEFAULT_TEST_CHANNEL 60
#define GSM_DEFAULT_RAMP_START 66
#define GSM_DEFAULT_RAMP_END 66
#define DCS_DEFAULT_TEST_CHANNEL 700
#define DCS_DEFAULT_RAMP_START 66
#define DCS_DEFAULT_RAMP_END 66
#define PCS_DEFAULT_TEST_CHANNEL 700
#define PCS_DEFAULT_RAMP_START 66
#define PCS_DEFAULT_RAMP_END 66
#define GSM850_DEFAULT_TEST_CHANNEL 190
#define GSM850_DEFAULT_RAMP_START 66
#define GSM850_DEFAULT_RAMP_END 66
#define USER_PARAMS 1
struct CAL_PROPERTIES
{
int gpib_address;
int com_port;
int cal_rx;
int gsm_test_channel;
float gsm_highest_power;
float gsm_tx_cable_loss;
float gsm_rx_cable_loss;
int gsm_ramp_start;
int gsm_ramp_end;
int dcs_test_channel;
float dcs_highest_power;
float dcs_tx_cable_loss;
float dcs_rx_cable_loss;
int dcs_ramp_start;
int dcs_ramp_end;
int pcs_test_channel;
float pcs_highest_power;
float pcs_tx_cable_loss;
float pcs_rx_cable_loss;
int pcs_ramp_start;
int pcs_ramp_end;
int gsm850_test_channel;
float gsm850_highest_power;
float gsm850_tx_cable_loss;
float gsm850_rx_cable_loss;
int gsm850_ramp_start;
int gsm850_ramp_end;
// parameters added 10/31 for Infineon cal - v 6.20
int gsm_ramp_up_length[15];
int gsm_ramp_down_length[15];
int gsm_ramp_up_delta[15];
int gsm_ramp_down_delta[15];
float gsm_pedestal_slope[15];
float gsm_pedestal_power[15];
float gsm_low_power[2];
float gsm_low_slope[2];
int dcs_ramp_up_length[16];
int dcs_ramp_down_length[16];
int dcs_ramp_up_delta[16];
int dcs_ramp_down_delta[16];
float dcs_pedestal_slope[16];
float dcs_pedestal_power[16];
float dcs_low_power[2];
float dcs_low_slope[2];
int pcs_ramp_up_length[16];
int pcs_ramp_down_length[16];
int pcs_ramp_up_delta[16];
int pcs_ramp_down_delta[16];
float pcs_pedestal_slope[16];
float pcs_pedestal_power[16];
float pcs_low_power[2];
float pcs_low_slope[2];
int gsm850_ramp_up_length[15];
int gsm850_ramp_down_length[15];
int gsm850_ramp_up_delta[15];
int gsm850_ramp_down_delta[15];
float gsm850_pedestal_slope[15];
float gsm850_pedestal_power[15];
float gsm850_low_power[2];
float gsm850_low_slope[2];
int cal_gsm; // 4/18/01
int cal_dcs; // 4/18/01
int cal_pcs;
int cal_gsm850;
};
typedef struct CAL_PROPERTIES UserDefParm_t;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -