From 86c3f6aa901f8387f237df42a3216e2b999db183 Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Tue, 22 Nov 2022 12:51:52 -0600 Subject: [PATCH] Upload FST4W-900 spots with tr=15 because WSPRnet does not recognize tr=16. --- Network/wsprnet.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Network/wsprnet.cpp b/Network/wsprnet.cpp index e01be1b5e..903c82368 100644 --- a/Network/wsprnet.cpp +++ b/Network/wsprnet.cpp @@ -278,9 +278,10 @@ QString WSPRNet::encode_mode () const if (m_mode == "FST4W") { auto tr = static_cast ((TR_period_ / 60.)+.5); - if (2 == tr || 15 == tr) +// if (2 == tr || 15 == tr) + if (2 == tr) { - tr += 1; // distinguish from WSPR-2 and WSPR-15 + tr += 1; // distinguish from WSPR-2 } return QString::number (tr); }