| 662 | } |
| 663 | |
| 664 | void TransmitModel::setTxFilterLow(int hz) |
| 665 | { |
| 666 | hz = qBound(0, hz, 10000); |
| 667 | emit commandReady(QString("transmit set filter_low=%1 filter_high=%2") |
| 668 | .arg(hz).arg(m_txFilterHigh)); |
| 669 | } |
| 670 | |
| 671 | void TransmitModel::setTxFilterHigh(int hz) |
| 672 | { |
no outgoing calls
no test coverage detected