Automatic updates scheduler

Added function to automatically update FrogPilot on either a daily or weekly schedule.
This commit is contained in:
FrogAi
2024-02-27 16:34:47 -07:00
parent a6aa132b3d
commit e37b94b4d8
4 changed files with 124 additions and 15 deletions

View File

@@ -226,6 +226,7 @@ std::unordered_map<std::string, uint32_t> keys = {
{"FrogsGoMoo", PERSISTENT},
{"LateralTune", PERSISTENT},
{"LongitudinalTune", PERSISTENT},
{"ManualUpdateInitiated", CLEAR_ON_MANAGER_START},
{"PromptVolume", PERSISTENT},
{"PromptDistractedVolume", PERSISTENT},
{"QOLControls", PERSISTENT},
@@ -233,6 +234,8 @@ std::unordered_map<std::string, uint32_t> keys = {
{"RefuseVolume", PERSISTENT},
{"SilentMode", PERSISTENT},
{"StockTune", PERSISTENT},
{"UpdateSchedule", PERSISTENT},
{"UpdateTime", PERSISTENT},
{"WarningSoftVolume", PERSISTENT},
{"WarningImmediateVolume", PERSISTENT},
};