Merge branch 'sfox4' of bitbucket.org:k1jt/wsjtx into sfox4

This commit is contained in:
Joe Taylor 2024-05-29 10:09:31 -04:00
commit 9f97d94a05

View File

@ -4729,7 +4729,7 @@ void MainWindow::guiUpdate()
}
}
}
else if (SpecOp::HOUND == m_specOp) {
else if (SpecOp::HOUND == m_specOp && !m_config.superFox()) {
if(m_auto && !m_tune) {
if (ui->TxFreqSpinBox->value() < 999 && m_ntx != 3) {
// Hound randomized range: 1000-3000 Hz
@ -4740,16 +4740,14 @@ void MainWindow::guiUpdate()
#endif
}
}
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;
}
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;
}
}
}