From 3b7c32853e7988da54b51818c0071fd2a1f87c73 Mon Sep 17 00:00:00 2001 From: Steve Franke Date: Thu, 1 Nov 2018 11:20:51 -0500 Subject: [PATCH] Bump default MSK144 Ftol to 50 Hz (from 20 Hz) to make it more likely that new or casual users will decode some signals. --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 1f8f8d522..fa41ad046 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1111,7 +1111,7 @@ void MainWindow::readSettings() ui->RxFreqSpinBox->setValue(0); // ensure a change is signaled ui->RxFreqSpinBox->setValue(m_settings->value("RxFreq",1500).toInt()); m_nSubMode=m_settings->value("SubMode",0).toInt(); - ui->sbFtol->setValue (m_settings->value("Ftol", 20).toInt()); + ui->sbFtol->setValue (m_settings->value("Ftol", 50).toInt()); m_minSync=m_settings->value("MinSync",0).toInt(); ui->syncSpinBox->setValue(m_minSync); ui->cbAutoSeq->setChecked (m_settings->value ("AutoSeq", false).toBool());