| 434 | } |
| 435 | |
| 436 | void TransmitModel::setMox(bool on) |
| 437 | { |
| 438 | // Optimistic MOX edge gating keeps UI/audio aligned with user intent. |
| 439 | // Interlock status from the radio will still reconcile final state. |
| 440 | if (m_transmitting != on) { |
| 441 | m_transmitting = on; |
| 442 | emit moxChanged(on); |
| 443 | } |
| 444 | emit commandReady(QString("xmit %1").arg(on ? 1 : 0)); |
| 445 | } |
| 446 | |
| 447 | void TransmitModel::setTransmitting(bool tx) |
| 448 | { |
no outgoing calls
no test coverage detected