Skip to content

Commit f56da8e

Browse files
authored
Merge pull request #32 from OpenSimulationInterface/fix-brake-light-state-enum
Fix naming according to the conventions
2 parents fac6a8c + 09466a0 commit f56da8e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

osi_object.proto

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,15 +137,15 @@ message Vehicle
137137
enum BrakeLightState
138138
{
139139
/// Brake light state is unknown (must not be used in ground truth).
140-
BRAKE_LIGHT_STATE = 0;
140+
BRAKE_LIGHT_STATE_UNKNOWN = 0;
141141
/// Other (unspecified but known) state of brake light.
142-
BRAKE_LIGHT_OTHER = 1;
142+
BRAKE_LIGHT_STATE_OTHER = 1;
143143
/// Brake lights are off.
144-
BRAKE_LIGHT_OFF = 2;
144+
BRAKE_LIGHT_STATE_OFF = 2;
145145
/// Brake lights are on with normal intensity.
146-
BRAKE_LIGHT_NORMAL = 3;
146+
BRAKE_LIGHT_STATE_NORMAL = 3;
147147
/// Brake lights are on with extra bright intensity (indicating stronger braking).
148-
BRAKE_LIGHT_STRONG = 4;
148+
BRAKE_LIGHT_STATE_STRONG = 4;
149149
}
150150
}
151151
}

0 commit comments

Comments
 (0)