From d3321729dc94b2adeb8d91e4b4fecf2fe7c6fe89 Mon Sep 17 00:00:00 2001 From: BG4TGO-Tom Date: Wed, 12 Nov 2025 20:15:12 +0800 Subject: [PATCH] Update P25RX.cpp Resolve the issue where, in standalone P25 mode, the COS LED remains constantly lit after the hotspot receives a P25 signal. --- P25RX.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/P25RX.cpp b/P25RX.cpp index cd9f69c..b46000c 100644 --- a/P25RX.cpp +++ b/P25RX.cpp @@ -69,6 +69,7 @@ void CP25RX::databit(bool bit) processNone(bit); break; } + io.setDecode(m_state != P25RXS_NONE); } void CP25RX::processNone(bool bit)