From c71c4e1cd2b6cc79021452e777ab8aa4d2e737d8 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Mon, 2 Dec 2024 22:26:02 +0100 Subject: [PATCH] Chore: rename timer to stopwatch --- Settings.proto | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Settings.proto b/Settings.proto index 45b00cb..5514068 100644 --- a/Settings.proto +++ b/Settings.proto @@ -21,13 +21,13 @@ message SecuritySettings { } // -// TimerMode +// StopwatchSettings // // = Competition classic race = message ManualStartProcedure { - // If set to true, the timer will play the "Ready" sound before starting when - // RaceStartCommand is sent. + // If set to true, the stopwatch will play the "Ready" sound before starting + // when RaceStartCommand is sent. bool sayReady = 1; } @@ -101,7 +101,7 @@ message TrainingClassicRaceMode { IndicatorSettings indicatorSettings = 4; } -message TimerMode { +message StopwatchSettings { oneof mode { CompetitionClassicRaceMode competitionClassicRaceMode = 1; TrainingClassicRaceMode trainingClassicRaceMode = 2; @@ -114,11 +114,11 @@ message Settings { // if the settings are stored as default in the flash memory. bool default = 1; - // DEPRECATED, just kept for compatibility, use TimerMode instead! - // Will be ignored when TimerMode is set. + // DEPRECATED, just kept for compatibility, use StopwatchSettings instead! + // Will be ignored when StopwatchSettings is set. TrainingClassicRaceMode race = 2 [ deprecated = true ]; SoundSettings sound = 3; - TimerMode timerMode = 4; + StopwatchSettings stopwatchSettings = 4; SecuritySettings securitySettings = 5; } \ No newline at end of file