折返速度调整

This commit is contained in:
tiger_zhou 2024-09-11 13:28:55 +08:00
parent 15470e0e4a
commit 35c2c8e774

View File

@ -195,7 +195,7 @@ message TrainState{
// BTMState btmState = 23;
TrainControlState tcc = 24;
TrainConnState connState = 25; //
SensorSpeedPulseCount pluseCount = 26;
// SensorSpeedPulseCount pluseCount = 26;
// VobcBtmState vobcBtm = 27;//vobc btm
string oldLink = 28;
int64 oldLinkOffset = 29;
@ -211,7 +211,8 @@ message TrainState{
float TrainEmergencyBrake = 38;//
string projectCode = 39;
// TrainBtmCache BtmBaliseCache = 40;
TrainPort trainPort = 40;
TrainPort trainPort = 40; //
map<int32,SensorSpeedPulseCount> pulseCountMap = 41;
enum TrainPort{
PORT_NONE = 0;
PORT_A=1;
@ -234,9 +235,9 @@ message TrainBtmCache{
//
message SensorSpeedPulseCount{
uint32 pulseCount1 = 1;
uint32 pulseCount2 = 2;
// uint32 pulseCount2 = 2;
repeated float pulseCount3 = 3;
repeated float pulseCount4 = 4;
// repeated float pulseCount4 = 4;
}