| 1692 | } |
| 1693 | |
| 1694 | void RadioModel::cwAutoTune(int sliceId, bool intermittent) |
| 1695 | { |
| 1696 | if (intermittent) { |
| 1697 | sendCmd(QString("slice auto_tune %1 int=1").arg(sliceId)); |
| 1698 | } else { |
| 1699 | // int=0 stops the autotune engine (FlexLib: isIntermittent=false) |
| 1700 | sendCmd(QString("slice auto_tune %1 int=0").arg(sliceId)); |
| 1701 | } |
| 1702 | } |
| 1703 | |
| 1704 | void RadioModel::cwAutoTuneOnce(int sliceId) |
| 1705 | { |