mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-05 10:58:38 -04:00
Merge branch 'sfox4' of bitbucket.org:k1jt/wsjtx into sfox4
This commit is contained in:
commit
9f97d94a05
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user