From 273e8de689c659023eac59f7e1720db2b357b838 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Tue, 20 Jun 2017 02:48:30 +0000 Subject: [PATCH] Restore normal Fast MSK144 transmission after toggling Fast box and/or after returning to MSK144 from FT8. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7732 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index f6e23ecbe..c6318f06a 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4570,12 +4570,12 @@ void MainWindow::on_actionMSK144_triggered() m_toneSpacing=0.0; WSPR_config(false); VHF_features_enabled(true); -// m_bFastMode=true; + m_bFastMode=true; m_bFast9=false; fast_config(m_bFastMode); m_TRperiod = ui->sbTR->value (); -// m_wideGraph->hide(); -// m_fastGraph->show(); + m_wideGraph->hide(); + m_fastGraph->show(); ui->TxFreqSpinBox->setValue(1500); ui->RxFreqSpinBox->setValue(1500); ui->RxFreqSpinBox->setMinimum(1400); @@ -5438,9 +5438,9 @@ void MainWindow::transmit (double snr) double f0=1000.0; if(!m_bFastMode) { m_nsps=192; - m_toneSpacing=6000.0/m_nsps; f0=ui->TxFreqSpinBox->value () - m_XIT - 0.5*m_toneSpacing; } + m_toneSpacing=6000.0/m_nsps; m_FFTSize = 7 * 512; Q_EMIT FFTSize (m_FFTSize); int nsym;