| 509 | // ── Mic / monitor / processor commands ────────────────────────────────────── |
| 510 | |
| 511 | void TransmitModel::setMicSelection(const QString& input) |
| 512 | { |
| 513 | const QString normalized = input.toUpper(); |
| 514 | if (m_micSelection != normalized) { |
| 515 | m_micSelection = normalized; |
| 516 | emit micStateChanged(); |
| 517 | } |
| 518 | emit commandReady(QString("mic input %1").arg(normalized)); |
| 519 | } |
| 520 | |
| 521 | void TransmitModel::setMicLevel(int level) |
| 522 | { |