Consider "RR73" as equivalent to calling CQ

merge-requests/201/head test_POTA_and_RR73
Sebastian Delmont 2022-06-17 08:07:04 -04:00
rodzic 17c295620a
commit 7435b24af8
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -6957,7 +6957,6 @@ function handleWsjtxDecode(newMessage)
theTimeStamp =
timeNowSec() - (timeNowSec() % 86400) + parseInt(newMessage.TM / 1000);
var messageColor = "white";
if (CQ == true) messageColor = "cyan";
// Break up the decoded message
var decodeWords = newMessage.Msg.split(" ").slice(0, 5);
@ -7003,6 +7002,7 @@ function handleWsjtxDecode(newMessage)
CQ = true;
msgDXcallsign = "CQ";
}
if (decodeWords.length == 4 && CQ == true)
{
msgDXcallsign += " " + decodeWords[1];
@ -7023,6 +7023,12 @@ function handleWsjtxDecode(newMessage)
msgDEcallsign = decodeWords[1];
}
if (decodeWords[2] == "RR73")
{
CQ = true;
msgDXcallsign = "RR73";
}
var callsign = null;
var hash = msgDEcallsign + newMessage.OB + newMessage.OM;