From 7bfbca4532a658042111411739b39c51bec2a3d7 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 22 May 2019 15:10:14 -0400 Subject: [PATCH] Increase the FT4 received record length to 21*3456 = 72576 ==> 6.048 s. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index b7a600bd8..0242d570f 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1466,7 +1466,7 @@ void MainWindow::dataSink(qint64 frames) } m_fileToSave.clear (); int samples=m_TRperiod*12000; - if(m_mode=="FT4") samples=18*3456; + if(m_mode=="FT4") samples=21*3456; // the following is potential a threading hazard - not a good // idea to pass pointer to be processed in another thread