Don't change Tx frequency in SuperHound mode.

This commit is contained in:
Uwe Risse 2024-04-05 16:45:07 +02:00
parent da477107cc
commit 4e66d1eb9f

View File

@ -4696,6 +4696,7 @@ void MainWindow::guiUpdate()
#endif #endif
} }
} }
if (!m_config.superFox()) {
if (m_nSentFoxRrpt==2 and m_ntx==3) { if (m_nSentFoxRrpt==2 and m_ntx==3) {
// move off the original Fox frequency on subsequent tries of Tx3 // move off the original Fox frequency on subsequent tries of Tx3
int nfreq=m_nFoxFreq + 300; int nfreq=m_nFoxFreq + 300;
@ -4707,6 +4708,7 @@ void MainWindow::guiUpdate()
} }
} }
} }
}
// If HoldTxFreq is not checked, randomize Fox's Tx Freq // If HoldTxFreq is not checked, randomize Fox's Tx Freq
@ -9835,7 +9837,7 @@ void MainWindow::hound_reply ()
m_nSentFoxRrpt = 1; m_nSentFoxRrpt = 1;
ui->rptSpinBox->setValue(m_rptSent.toInt()); ui->rptSpinBox->setValue(m_rptSent.toInt());
if (!m_auto) auto_tx_mode(true); if (!m_auto) auto_tx_mode(true);
ui->TxFreqSpinBox->setValue (m_nFoxFreq); if (!m_config.superFox()) ui->TxFreqSpinBox->setValue (m_nFoxFreq);
} }
} }