@@ -101,35 +101,35 @@ message HostVehicleData
101
101
//
102
102
optional double curb_weight = 1 ;
103
103
104
- // The operating status of the vehicle.
104
+ // The operating state of the vehicle.
105
105
//
106
- optional OperatingStatus operating_status = 2 ;
106
+ optional OperatingState operating_state = 2 ;
107
107
108
- // Possible operating stati of the vehicle.
108
+ // Possible operating states of the vehicle.
109
109
//
110
110
enum OperatingStatus
111
111
{
112
- // The operating status is unknown.
112
+ // The operating state is unknown.
113
113
//
114
- OPERATING_STATUS_UNKNOWN = 0 ;
114
+ OPERATING_STATE_UNKNOWN = 0 ;
115
115
116
- // The operating status is another one.
116
+ // The operating state is another one.
117
117
//
118
- OPERATING_STATUS_OTHER = 1 ;
118
+ OPERATING_STATE_OTHER = 1 ;
119
119
120
120
// The minimum electrical state the vehicle reaches after a while.
121
121
// Usually the driver has left the car a few hours ago.
122
122
//
123
- OPERATING_STATUS_OFF = 2 ;
123
+ OPERATING_STATE_OFF = 2 ;
124
124
125
125
// Some electrical consumers are operating e.g. interior lights or radio.
126
126
// Usually the driver sits in the car before or after a drive.
127
127
//
128
- OPERATING_STATUS_READY = 3 ;
128
+ OPERATING_STATE_READY = 3 ;
129
129
130
130
// The electrical state that is necessary to drive the vehicle.
131
131
//
132
- OPERATING_STATUS_ON = 4 ;
132
+ OPERATING_STATE_ON = 4 ;
133
133
}
134
134
}
135
135
0 commit comments