mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-21 03:28:59 -04:00
Remove constraint on WSPRnet.org spots being in WSPR band segments
This seems harmless and will accommodate FST4W spots where operation is outside of WSPR band segments.
This commit is contained in:
parent
9200c3e27a
commit
5cc48497b8
@ -144,9 +144,11 @@ void WSPRNet::post (QString const& call, QString const& grid, QString const& rfr
|
||||
if (match.hasMatch ())
|
||||
{
|
||||
SpotQueue::value_type query;
|
||||
// Prevent reporting data ouside of the current frequency band
|
||||
// Prevent reporting data ouside of the current frequency
|
||||
// band - removed by G4WJS to accommodate FST4W spots
|
||||
// outside of WSPR segments
|
||||
auto tqrg = match.captured ("freq").toInt ();
|
||||
if (tqrg >= 1400 && tqrg <= 1600)
|
||||
// if (tqrg >= 1400 && tqrg <= 1600)
|
||||
{
|
||||
query.addQueryItem ("function", "wspr");
|
||||
// use time as at 3/4 of T/R period before current to
|
||||
|
Loading…
Reference in New Issue
Block a user