Fix the Superfox "please confirm Rx Freq" warning. Don't set FTol=20 in SuperFox mode.

This commit is contained in:
Joe Taylor 2024-09-19 13:19:59 -04:00
parent 2b2d790da2
commit f60db58372

View File

@ -3570,8 +3570,8 @@ void MainWindow::decode() //decode()
if(dec_data.params.b_superfox and dec_data.params.b_even_seq and m_ihsym<50) return; if(dec_data.params.b_superfox and dec_data.params.b_even_seq and m_ihsym<50) return;
dec_data.params.ntol=ui->sbFtol->value (); dec_data.params.ntol=ui->sbFtol->value ();
if(!m_config.enable_VHF_features()) { if(!m_config.enable_VHF_features() and ) {
dec_data.params.ntol=20; if(!m_config.superFox()) dec_data.params.ntol=20;
dec_data.params.naggressive=0; dec_data.params.naggressive=0;
} }
if(m_mode=="FST4") { if(m_mode=="FST4") {
@ -8593,7 +8593,7 @@ void MainWindow::setFreq4(int rxFreq, int txFreq)
(qAbs(rxFreq-750)>200)) { (qAbs(rxFreq-750)>200)) {
// SuperHound should normally keep RxFreq close to 750 Hz // SuperHound should normally keep RxFreq close to 750 Hz
if(MessageBox::No == MessageBox::query_message (this, if(MessageBox::No == MessageBox::query_message (this,
tr ("Please confirm setting RxFreq to %1 Hz").arg tr ("Please confirm setting RxFreq to %1 Hz.\nSuperFox should be at 750 Hz.").arg
(QString::number(rxFreq)))) return; (QString::number(rxFreq)))) return;
} }