From 4e66d1eb9fabcb03a491328d031ce9b7d17d94e4 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Fri, 5 Apr 2024 16:45:07 +0200 Subject: [PATCH] Don't change Tx frequency in SuperHound mode. --- widgets/mainwindow.cpp | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index f5045045c..624f70737 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4696,14 +4696,16 @@ void MainWindow::guiUpdate() #endif } } - if (m_nSentFoxRrpt==2 and m_ntx==3) { - // move off the original Fox frequency on subsequent tries of Tx3 - int nfreq=m_nFoxFreq + 300; - if(m_nFoxFreq>600) nfreq=m_nFoxFreq - 300; //keep nfreq below 900 Hz - ui->TxFreqSpinBox->setValue(nfreq); - } - if (m_nSentFoxRrpt == 1) { - ++m_nSentFoxRrpt; + if (!m_config.superFox()) { + if (m_nSentFoxRrpt==2 and m_ntx==3) { + // move off the original Fox frequency on subsequent tries of Tx3 + int nfreq=m_nFoxFreq + 300; + if(m_nFoxFreq>600) nfreq=m_nFoxFreq - 300; //keep nfreq below 900 Hz + ui->TxFreqSpinBox->setValue(nfreq); + } + if (m_nSentFoxRrpt == 1) { + ++m_nSentFoxRrpt; + } } } } @@ -9835,7 +9837,7 @@ void MainWindow::hound_reply () m_nSentFoxRrpt = 1; ui->rptSpinBox->setValue(m_rptSent.toInt()); if (!m_auto) auto_tx_mode(true); - ui->TxFreqSpinBox->setValue (m_nFoxFreq); + if (!m_config.superFox()) ui->TxFreqSpinBox->setValue (m_nFoxFreq); } }