| 59 | } |
| 60 | |
| 61 | void ModemASK::writeSetting(std::string setting, std::string value) { |
| 62 | if (setting == "cons") { |
| 63 | int newCons = std::stoi(value); |
| 64 | updateDemodulatorCons(newCons); |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | std::string ModemASK::readSetting(std::string setting) { |
| 69 | if (setting == "cons") { |
nothing calls this directly
no outgoing calls
no test coverage detected