2
0
Fork 0

Docs: explain reactionTime and climbingTime

This commit is contained in:
Dorian Zedler 2024-12-03 22:06:59 +01:00
parent 3f574fb3eb
commit 7e62951c77
Signed by: dorian
GPG key ID: 989DE36109AFA354

View file

@ -40,7 +40,16 @@ message LaneFullState {
DISABLED = 12;
}
State state = 1;
// The reaction time in milliseconds relative to the beginning of the start
// sequence. To get the common representation of the reaction time (relative
// to the beginning of the third beep), 3000ms must be subtracted.
// If this is 0, the reaction time is not set (yet).
uint32 reactionTime = 2;
// The climbing time in milliseconds relative to the beginning of the third
// beep.
// If this is 0, the climbing time is not set (yet).
uint32 climbingTime = 3;
LaneExtraState extraState = 4;