From 08866b0d75d104abba8288a50ab1a1bb7a168122 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Sun, 11 Aug 2024 11:54:09 +0200 Subject: [PATCH] Ignore stations calling in the wrong time slot when in Hound mode. --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 1c12744c0..684b94df7 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4378,6 +4378,7 @@ void MainWindow::readFromStdout() //readFromStdout m_nFoxFreq=decodedtext.string().mid(16,4).toInt(); hound_reply (); } else { + if (SpecOp::HOUND==m_specOp && (text.mid(4,2).contains("15") or text.mid(4,2).contains("45"))) return; // ignore stations calling in the wrong time slot if (text.contains(" " + m_config.my_callsign() + " " + m_hisCall) && !text.contains("73 ")) processMessage(decodedtext0); // needed for MSHV multistream messages } }