📄 globalconstant.cs
字号:
namespace ctd.E1Analyzer.GlobalConstant
{
public class MsgCommandId
{
/// <summary>
/// 上行消息码字定义
/// </summary>
public const byte EQUIP_RESET_ACK = 0x61; //设备复位确认
public const byte START_TEST_ACK = 0x62;
public const byte STOP_TEST_ACK = 0x63;
public const byte ROUTE_TEST_ACK = 0x64;
public const byte TIME_CHECK_ACK = 0x65;
public const byte INFO_SET_ACK = 0x66;
public const byte OUT_SERVICE_TEST_CTRL_ACK = 0x67;
public const byte REAL_PFM_QUERY_ACK = 0x68;
public const byte FIF_MIN_PFM = 0x69;
public const byte ALM = 0x70;
public const byte CIR_BACK_DELAY_TEST_ACK = 0x71;
public const byte LAMP_QUERY_ACK = 0x72;
///
/// 下行消息码字定义
///
public const byte EQUIP_RESET = 0x30;//设备复位
public const byte EQUIP_RESET_RE_ACK = 0x31;//设备复位再确认
public const byte START_TEST = 0x32;
public const byte STOP_TEST = 0x33;
public const byte ROUTE_TEST = 0x34;
public const byte TIME_CHECK = 0x35;
public const byte INFO_SET = 0x36;
public const byte OUT_SERVICE_TEST_CTRL = 0x37;
public const byte REAL_PFM_QUERY = 0x38;
public const byte FIF_MIN_PFM_ACK = 0x39;
public const byte ALM_ACK = 0x40;
public const byte CIR_BACK_DELAY_TEST = 0x41;
public const byte LAMP_QUERY = 0x42;
/// <summary>
///
/// </summary>
public const int USER = 0x0400;
public const int WM_REC_DATA = USER + 100;
public const int WM_SND_DATA = USER + 101;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -