mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 09:49:32 +02:00
Make CAN-FD frequence configurable
This commit is contained in:
parent
bf7d10c825
commit
454a4565c0
5 changed files with 26 additions and 4 deletions
|
@ -554,6 +554,9 @@ void init_webserver() {
|
|||
} else if (p->name() == "CANFREQ") {
|
||||
auto type = atoi(p->value().c_str());
|
||||
settings.saveUInt("CANFREQ", type);
|
||||
} else if (p->name() == "CANFDFREQ") {
|
||||
auto type = atoi(p->value().c_str());
|
||||
settings.saveUInt("CANFDFREQ", type);
|
||||
} else if (p->name() == "PRECHGMS") {
|
||||
auto type = atoi(p->value().c_str());
|
||||
settings.saveUInt("PRECHGMS", type);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue