JOIN/SIGN UP
Already a Member? |
GET INVOLVED
Understanding and Engaging in COVESA Expert Groups & Projects |
COLLABORATIVE PROJECTS
HISTORICAL
SDV Telemetry Project |
We use cookies on this site to enhance your user experience. By using this site, you are giving your consent for us to set cookies. |
Information related to translation or use of Protocol Buffers (a.k.a. protobuf), together with the common data or service model.
Purpose:
Alternatives:
Useful links:
Concerns
One translation proposal encodes each branch as its own type (protobuf: message) . Leaves are, but branches (message types) containing branches (other message types) are also shown:
message VehicleBodyWindshieldFrontHeating {
bool Status = 1;
}
message VehicleBodyWindshieldFrontWasherFluid {
bool LevelLow = 1;
uint32 Level = 2;
}
message VehicleBodyWindshieldFront {
VehicleBodyWindshieldFrontWiping Wiping = 1;
VehicleBodyWindshieldFrontHeating Heating = 2;
VehicleBodyWindshieldFrontWasherFluid WasherFluid = 3;
}
message VehicleBodyWindshieldRearWiping {
string Status = 1;
}
message VehicleBodyWindshieldRearHeating {
bool Status = 1;
}
message VehicleBodyWindshieldRearWasherFluid {
bool LevelLow = 1;
uint32 Level = 2;
}
message VehicleBodyWindshieldRear {
VehicleBodyWindshieldRearWiping Wiping = 1;
VehicleBodyWindshieldRearHeating Heating = 2;
VehicleBodyWindshieldRearWasherFluid WasherFluid = 3;
}
message VehicleBodyWindshield {
VehicleBodyWindshieldFront Front = 1;
VehicleBodyWindshieldRear Rear = 2;
}
message VehicleBodyLights {
bool IsHighBeamOn = 1;
bool IsLowBeamOn = 2;
bool IsRunningOn = 3;
bool IsBackupOn = 4;
bool IsParkingOn = 5;
bool IsBrakeOn = 6;
bool IsRearFogOn = 7;
bool IsFrontFogOn = 8;
bool IsHazardOn = 9;
bool IsLeftIndicatorOn = 10;
bool IsRightIndicatorOn = 11;
}