From 3a463c3cd8bd8f97759b581949c358d2a9689a3a Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 28 Jul 2021 15:14:31 +0100 Subject: [PATCH 1/5] Update sample files build script --- samples/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/CMakeLists.txt b/samples/CMakeLists.txt index 5d142a525..faf61560e 100644 --- a/samples/CMakeLists.txt +++ b/samples/CMakeLists.txt @@ -1,6 +1,6 @@ set (SAMPLE_FILES FT4/000000_000002.wav - FT8/181201_180245.wav + FT8/210703_133430.wav FST4+FST4W/210115_0058.wav FST4+FST4W/201230_0300.wav MSK144/181211_120500.wav From 94861e04e5b40b3140477fb4f892936b72d8a007 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Wed, 28 Jul 2021 09:52:39 -0500 Subject: [PATCH 2/5] minor edit to FT8 tutorial. --- doc/user_guide/en/tutorial-example3.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/user_guide/en/tutorial-example3.adoc b/doc/user_guide/en/tutorial-example3.adoc index 51bd36412..a5af8902c 100644 --- a/doc/user_guide/en/tutorial-example3.adoc +++ b/doc/user_guide/en/tutorial-example3.adoc @@ -67,7 +67,8 @@ station. ** You can modify the double-click behavior by holding down the *Shift* key to move only the Tx frequency or the *Ctrl* key to move -both Rx and Tx frequencies. +both Rx and Tx frequencies. (On a Mac computer, use the *command* key +instead of *Ctrl*). ** In addition, if *Double-click on call sets Tx enable* is checked on the *Settings | General* tab then *Enable Tx* will be activated From 771f424108065eb5e160883055009f9e8bf45e9a Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Wed, 28 Jul 2021 09:54:05 -0500 Subject: [PATCH 3/5] FT8: ensure that nagain only decodes near nfqso. --- lib/ft8_decode.f90 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/ft8_decode.f90 b/lib/ft8_decode.f90 index 73d0f8c2a..b67be7390 100644 --- a/lib/ft8_decode.f90 +++ b/lib/ft8_decode.f90 @@ -131,8 +131,9 @@ contains endif ifa=nfa ifb=nfb - if(nzhsym.eq.50 .and. nagain) then - dd=iwave +! if(nzhsym.eq.50 .and. nagain) then + if(nagain) then +! dd=iwave ifa=nfqso-20 ifb=nfqso+20 endif From 116f756b1a1015c705fb0097b8e1a52d963cf4ac Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Wed, 28 Jul 2021 10:11:28 -0500 Subject: [PATCH 4/5] another edit to FT8 tutorial. --- doc/user_guide/en/tutorial-example3.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user_guide/en/tutorial-example3.adoc b/doc/user_guide/en/tutorial-example3.adoc index a5af8902c..29749c7fc 100644 --- a/doc/user_guide/en/tutorial-example3.adoc +++ b/doc/user_guide/en/tutorial-example3.adoc @@ -6,7 +6,7 @@ .Open a Wave File: -- Select *File | Open* and navigate to +- Select *File | Open log directory* and navigate to +...\save\samples\FT8\210703_133430.wav+. The waterfall and Band Activity/Rx Frequency windows should look something like the following screen shots: From 777126ae1eea9577c597df143bac302d1ad42192 Mon Sep 17 00:00:00 2001 From: k9an Date: Wed, 28 Jul 2021 10:58:20 -0500 Subject: [PATCH 5/5] Another attempt to make nagain work correctly. --- lib/ft8_decode.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ft8_decode.f90 b/lib/ft8_decode.f90 index b67be7390..04e8fae1a 100644 --- a/lib/ft8_decode.f90 +++ b/lib/ft8_decode.f90 @@ -133,7 +133,7 @@ contains ifb=nfb ! if(nzhsym.eq.50 .and. nagain) then if(nagain) then -! dd=iwave + dd=iwave ifa=nfqso-20 ifb=nfqso+20 endif