From 18fac2e4ba0ac41ec99f47dbfc067a78ebf0cbc1 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 8 Oct 2018 15:00:54 -0400 Subject: [PATCH] Fixed BEACON ACK replies to CQs --- mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 61361aa..d48ff74 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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;