mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-29 04:42:28 -04:00
Revert "Explicitly allow the Fox to transmit after the Tx frequency has been set at least 3 kHz from the main FT8 sub-bands."
This reverts commit 8e0df8c0eacca481922aae88ee841913cf3d375a.
This commit is contained in:
parent
8e0df8c0ea
commit
ed19a92e2a
@ -4904,7 +4904,7 @@ void MainWindow::guiUpdate()
|
|||||||
QVector<qint32> ft8Freq = {1840000,3573000,7074000,10136000,14074000,18100000,21074000,24915000,28074000,50313000,70154000};
|
QVector<qint32> ft8Freq = {1840000,3573000,7074000,10136000,14074000,18100000,21074000,24915000,28074000,50313000,70154000};
|
||||||
for(int i=0; i<ft8Freq.length()-1; i++) {
|
for(int i=0; i<ft8Freq.length()-1; i++) {
|
||||||
int kHzdiff=m_freqNominal - ft8Freq[i];
|
int kHzdiff=m_freqNominal - ft8Freq[i];
|
||||||
if(qAbs(kHzdiff) < 3000) {
|
if(qAbs(kHzdiff) < 3000 ) {
|
||||||
m_bTxTime=false;
|
m_bTxTime=false;
|
||||||
if (m_auto) auto_tx_mode (false);
|
if (m_auto) auto_tx_mode (false);
|
||||||
if (m_tune) stop_tuning();
|
if (m_tune) stop_tuning();
|
||||||
@ -4916,7 +4916,6 @@ void MainWindow::guiUpdate()
|
|||||||
MessageBox::warning_message (this, tr ("Fox Mode warning"), message);
|
MessageBox::warning_message (this, tr ("Fox Mode warning"), message);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
if(qAbs(kHzdiff) > 2999) m_bTxTime=true; // allow Tx again
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user