| 554 | } |
| 555 | |
| 556 | void TransmitModel::setDax(bool on) |
| 557 | { |
| 558 | // Optimistic local update mirroring the sibling mic setters; the radio's |
| 559 | // dax= status echo (parsed above, under the micChanged path) supersedes. |
| 560 | if (m_daxOn != on) { |
| 561 | m_daxOn = on; |
| 562 | emit micStateChanged(); // PhoneCwApplet's DAX button binds to this |
| 563 | } |
| 564 | emit commandReady(QString("transmit set dax=%1").arg(on ? 1 : 0)); |
| 565 | } |
| 566 | |
| 567 | void TransmitModel::setSbMonitor(bool on) |
| 568 | { |
no outgoing calls
no test coverage detected