ncc协议x
This commit is contained in:
parent
6c78a70743
commit
05401fc188
@ -126,14 +126,21 @@ message Track{
|
|||||||
bool blocked = 11;
|
bool blocked = 11;
|
||||||
//设备唯一识别码,一般为设备名称
|
//设备唯一识别码,一般为设备名称
|
||||||
string id = 12;
|
string id = 12;
|
||||||
|
|
||||||
//限速
|
//限速
|
||||||
float speedLimit = 13;
|
int32 speedLimit = 13;
|
||||||
//限速类型
|
//限速类型
|
||||||
// 为1时,CBTC限速;
|
LimitType limitType = 14;
|
||||||
// 为2时,联锁限速;
|
|
||||||
// 为4时,同时限速。
|
//track限速类型
|
||||||
int32 limitType = 14;
|
enum LimitType{
|
||||||
|
Unknown = 0;
|
||||||
|
//为1时,CBTC限速
|
||||||
|
Cbtc = 1;
|
||||||
|
//为2时,联锁限速;
|
||||||
|
Interlock = 2;
|
||||||
|
//为4时,同时限速。
|
||||||
|
CbtcInterlock = 4;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
message Platform{
|
message Platform{
|
||||||
|
Loading…
Reference in New Issue
Block a user