diff --git a/protos/device_status.proto b/protos/device_status.proto index 14cc6f5..820de64 100644 --- a/protos/device_status.proto +++ b/protos/device_status.proto @@ -108,6 +108,8 @@ message Switch{ bool ipSingleSwitchStusLostIndication = 27; //设备唯一识别码,一般为设备名称 string id = 28; + //限速值KM/H + int32 speedLimit = 29; } message Track{ @@ -142,6 +144,10 @@ message Platform{ bool downTrainSkipstop = 13; //设备唯一识别码,一般为设备名称 string id = 14; + //下一区间运行时间 + int32 nextSectionRunTime = 15; + //下一区间运行等级 + int32 nextSectionRunLevel = 16; } message Scada{ @@ -212,3 +218,16 @@ message TrainMode{ //设备唯一识别码,一般为设备名称 string id = 35; } + +////////////////////////////////////////////////////////////////////// + +//2.7.2 信息源网络状态消息 +//NCC FEP与OCC FEP 间的网络连接状态 +message OccNccFepNetwork{ + //当前线路号 + string id = 1; + //true 代表与当前线路号的信息源(server)连接正常 + //false 代表断开 + bool active = 2; +} +