Upload FST4W-900 spots with tr=15 because WSPRnet does not recognize tr=16.

This commit is contained in:
Steven Franke 2022-11-22 12:51:52 -06:00
parent fb01223768
commit 86c3f6aa90

View File

@ -278,9 +278,10 @@ QString WSPRNet::encode_mode () const
if (m_mode == "FST4W") if (m_mode == "FST4W")
{ {
auto tr = static_cast<int> ((TR_period_ / 60.)+.5); auto tr = static_cast<int> ((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); return QString::number (tr);
} }