| 64 | } |
| 65 | |
| 66 | std::string ModemQAM::readSetting(std::string setting) { |
| 67 | if (setting == "cons") { |
| 68 | return std::to_string(cons); |
| 69 | } |
| 70 | return ""; |
| 71 | } |
| 72 | |
| 73 | void ModemQAM::updateDemodulatorCons(int cons_in) { |
| 74 | cons = cons_in; |
nothing calls this directly
no outgoing calls
no test coverage detected