Adding ability to configure Can Addon frequency in common image

This commit is contained in:
Matt Holmes 2025-08-22 11:23:32 +01:00
parent eb047badfd
commit 4e0ea84fad
5 changed files with 20 additions and 1 deletions

View file

@ -515,6 +515,9 @@ void init_webserver() {
} else if (p->name() == "INVBTYPE") {
auto type = atoi(p->value().c_str());
settings.saveUInt("INVBTYPE", (int)type);
} else if (p->name() == "CANFREQ"){
auto type = atoi(p->value().c_str());
settings.saveUInt("CANFREQ", type);
}
for (auto& boolSetting : boolSettings) {