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