CQ POTA and early catching of POTAs

merge-requests/175/merge test_POTAWanted_Beta3
Matthew Chambers 2022-05-21 17:19:15 -05:00
rodzic d39d9114f2
commit 9ce216c2ee
2 zmienionych plików z 10 dodań i 5 usunięć

Wyświetl plik

@ -5,11 +5,6 @@
var g_potaPlaces = null;
var g_potaSpots = null;
const g_NotaAPota = {
refrence: null,
name: null
}
function ingestPotaPlaces(buffer)
{
try

Wyświetl plik

@ -45,6 +45,16 @@ function processRosterFiltering(callRoster, rosterSettings)
entry.tx = false;
continue;
}
if (entry.DXcall == "CQ POTA" && huntPOTA.checked == true)
{
entry.tx = true;
if (callObj.pota == null)
{
callObj.pota.reference = "?-????";
callObj.pota.name = "Unknown Park";
}
continue;
}
if (callObj.ituza in g_blockedITUz)
{
entry.tx = false;