| | |
| | | //FBS9600S设备内阻测试的启动命令
|
| | | final public static int CMD_9600_Start=1;
|
| | |
|
| | | //系统参数命令
|
| | | public static final int CMD_GetSYSSetParamAck = 0x7E; //126
|
| | | public static final int CMD_SetSYSSetParamAck = 0x7F; //127
|
| | | public static final int CMD_GetSYSSetParam = 0x80;//获取系统参数128
|
| | | public static final int CMD_SetSYSSetParam = 0x81;//设置系统参数129
|
| | | public static final int CMD_ResetSystemAck = 0x0F;//15
|
| | | public static final int CMD_ResetSystem = 0x10;//重启16
|
| | | |
| | | |
| | | //读取GPRS模块的信号质量
|
| | | public static final int CMD_ReadGPRSCSQ = 0x91;
|
| | | public static final int CMD_ReadGPRSCSQAck = 0x92;
|
| | | |
| | |
|
| | | //6185设备工作状态对应关系workstate
|
| | | final public static int DEV_ONLINE_CHARGE=0; //在线浮充
|
| | |
| | | final public static int DEV_POWER_CUT=3; //停电测试
|
| | | final public static int DEV_RES_TEST=4; //内阻测试
|
| | | final public static int DEV_KD_TEST=5; //kd测试
|
| | | |
| | | |
| | | //bts设备工作状态对应关系workstate
|
| | | final public static int ONLINE_TEST=0; //在线检测
|
| | | final public static int DISCHARGE=1; //放电测试
|
| | | final public static int CHARGE=2; //充电测试
|
| | | final public static int RES_TEST=3; //内阻测试
|
| | | final public static int NONE=4; //未知
|
| | | |
| | | //bts放电测试页面中的测试类型的对应关系
|
| | | final public static int CMD_TESTCMD_HR = 37; //核容测试
|
| | | final public static int CMD_TESTCMD_RES = 50; //内阻测试
|
| | | final public static int CMD_TESTCMD_NULL = 0; //不设置测试类型
|
| | | }
|