Fixed BEACON ACK replies to CQs

This commit is contained in:
Jordan Sherer 2018-10-08 15:00:54 -04:00
parent 5275c0916f
commit 18fac2e4ba

View File

@ -3705,7 +3705,9 @@ void MainWindow::readFromStdout() //readFromStdout
cd.utcTimestamp = DriftingDateTime::currentDateTimeUtc();
cd.bits = decodedtext.bits();
if(decodedtext.isBeacon()){
// Only respond to BEACONS...remember that CQ messages are "Alt" beacons
if(decodedtext.isBeacon() && !decodedtext.isAlt()){
// convert BEACON to a directed command and process...
CommandDetail d = {};
d.from = cd.call;