From 29cb01697aea9cd10272e46c73734b498424f6c1 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sun, 7 Oct 2018 10:51:08 -0400 Subject: [PATCH] Bump to 25Hz buffer --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index dd7eacb..8850492 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -9284,7 +9284,7 @@ void MainWindow::processCommandActivity() { auto d = m_rxCommandQueue.dequeue(); bool isAllCall = isAllCallIncluded(d.to); - bool isNear = abs(d.freq - currentFreqOffset()) <= 110; // 100Hz + a 10Hz buffer + bool isNear = abs(d.freq - currentFreqOffset()) <= 125; // 100Hz + a 25Hz buffer bool isGroupCall = isGroupCallIncluded(d.to) && isNear; qDebug() << "try processing command" << d.from << d.to << d.cmd << d.freq << d.grid << d.extra;