From 8bbcea2c6de76f89c93c34357abbc545ac7763ca Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Sat, 9 Dec 2023 23:42:29 -0500 Subject: [PATCH] force redundant grant transmit in certain situations; --- src/p25/Control.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/p25/Control.cpp b/src/p25/Control.cpp index cc082531..ceb31fb3 100644 --- a/src/p25/Control.cpp +++ b/src/p25/Control.cpp @@ -338,8 +338,9 @@ void Control::setOptions(yaml::Node& conf, bool supervisor, const std::string cw yaml::Node controlCh = rfssConfig["controlCh"]; m_notifyCC = controlCh["notifyEnable"].as(false); - // voice on control forcibly disables CC notification + // voice on control forcibly disables CC notification; and force enable redundant grant if (m_voiceOnControl) { + m_control->m_redundantGrant = true; m_notifyCC = false; }