From 1075d04e59904dcffccd61799af868b6e21f7174 Mon Sep 17 00:00:00 2001 From: xzb <223@qq.com> Date: Fri, 9 Jun 2023 17:30:27 +0800 Subject: [PATCH] =?UTF-8?q?ncc=E5=8D=8F=E8=AE=AEx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/device_status.proto | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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; +} +