You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.5 KiB
79 lines
1.5 KiB
namespace CoreAgent.ProtocolClient.Enums
|
|
{
|
|
/// <summary>
|
|
/// 日志通道ID枚举
|
|
/// 定义了各种协议通道类型
|
|
/// </summary>
|
|
public enum LogChannelId
|
|
{
|
|
/// <summary>
|
|
/// 物理下行共享信道
|
|
/// </summary>
|
|
PDSCH,
|
|
|
|
/// <summary>
|
|
/// 物理下行控制信道
|
|
/// </summary>
|
|
PDCCH,
|
|
|
|
/// <summary>
|
|
/// 增强物理下行控制信道
|
|
/// </summary>
|
|
EPDCCH,
|
|
|
|
/// <summary>
|
|
/// 物理上行共享信道
|
|
/// </summary>
|
|
PUSCH,
|
|
|
|
/// <summary>
|
|
/// 物理上行控制信道
|
|
/// </summary>
|
|
PUCCH,
|
|
|
|
/// <summary>
|
|
/// 窄带物理下行共享信道
|
|
/// </summary>
|
|
NPDSCH,
|
|
|
|
/// <summary>
|
|
/// 窄带物理上行共享信道
|
|
/// </summary>
|
|
NPUSCH,
|
|
|
|
/// <summary>
|
|
/// 窄带物理广播信道
|
|
/// </summary>
|
|
NPBCH,
|
|
|
|
/// <summary>
|
|
/// 窄带广播控制信道
|
|
/// </summary>
|
|
BCCH_NR,
|
|
|
|
/// <summary>
|
|
/// 提示信息通道
|
|
/// </summary>
|
|
ID_HINTS,
|
|
|
|
/// <summary>
|
|
/// 探测参考信号
|
|
/// </summary>
|
|
SRS,
|
|
|
|
/// <summary>
|
|
/// 信道状态信息
|
|
/// </summary>
|
|
CSI,
|
|
|
|
/// <summary>
|
|
/// SIM卡事件
|
|
/// </summary>
|
|
SIM_EVENT,
|
|
|
|
/// <summary>
|
|
/// IP SIM
|
|
/// </summary>
|
|
IP_SIM
|
|
}
|
|
}
|