Add Store and Forward++ module

This commit is contained in:
Jonathan Bennett
2025-12-20 13:05:13 -06:00
parent d97e38bafc
commit d508de9568
6 changed files with 1271 additions and 0 deletions

View File

@@ -786,6 +786,10 @@ bool loadConfig(const char *configPath)
}
}
if (yamlConfig["StoreAndForward"]) {
portduino_config.sfpp_stratum0 = (yamlConfig["StoreAndForward"]["Stratum0"]).as<bool>(false);
}
if (yamlConfig["General"]) {
portduino_config.MaxNodes = (yamlConfig["General"]["MaxNodes"]).as<int>(200);
portduino_config.maxtophone = (yamlConfig["General"]["MaxMessageQueue"]).as<int>(100);