From 3d9409dd655a2719a334ffe5564a8277d0d94dcd Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 8 Jul 2017 16:10:23 +0000 Subject: [PATCH] Fix freq sent to PSRreporter for modes with short sequences. Thanks to Sandro, IW3RAB. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7816 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 78578e3ca..6311d6ea7 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2801,6 +2801,9 @@ void MainWindow::pskPost(DecodedText decodedtext) QString grid; decodedtext.deCallAndGrid(/*out*/deCall,grid); int audioFrequency = decodedtext.frequencyOffset(); + if(m_mode=="FT8" or m_mode=="MSK144") { + audioFrequency=decodedtext.string().mid(16,4).toInt(); + } int snr = decodedtext.snr(); Frequency frequency = m_freqNominal + audioFrequency; pskSetLocal ();