| 534 | } |
| 535 | |
| 536 | void TransmitModel::setSpeechProcessorEnable(bool on) |
| 537 | { |
| 538 | // Pcap confirmed: SmartSDR uses speech_processor_enable (not compander). |
| 539 | // Optimistic update: radio does not echo speech_processor_enable in |
| 540 | // incremental status — only in the initial full dump on connect. |
| 541 | m_speechProcEnable = on; |
| 542 | emit micStateChanged(); |
| 543 | emit commandReady(QString("transmit set speech_processor_enable=%1").arg(on ? 1 : 0)); |
| 544 | } |
| 545 | |
| 546 | void TransmitModel::setSpeechProcessorLevel(int level) |
| 547 | { |
no outgoing calls
no test coverage detected