2
0
Fork 0

Feat: add autostart state to lanes

This commit is contained in:
Dorian Zedler 2024-10-18 23:50:34 +02:00
parent ba0c0f8b35
commit 408f250614
Signed by: dorian
GPG key ID: 989DE36109AFA354

View file

@ -21,6 +21,13 @@ message LaneFullState {
State state = 1; State state = 1;
uint32 reactionTime = 2; uint32 reactionTime = 2;
uint32 climbingTime = 3; uint32 climbingTime = 3;
// This is only relevant in training mode!
// If this stays `true` for at least the configured autostart
// standstillDurationBeforeStart, an autostart will be executed.
// Once this becomes true, clients should display indicate it and
// optionally show a countdown.
bool autostartPending = 4;
} }
message RaceFullState { message RaceFullState {