From efff4f0dc46acd46f85f8e86e27cb3b27a112197 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Mon, 31 Jan 2022 17:37:24 +0000 Subject: [PATCH] Add the missing UseCOSAsLockout configuration option. --- Conf.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Conf.cpp b/Conf.cpp index d877868..77bbe3e 100644 --- a/Conf.cpp +++ b/Conf.cpp @@ -599,6 +599,8 @@ bool CConf::read() m_modemAX25TXLevel = float(::atof(value)); else if (::strcmp(key, "RSSIMappingFile") == 0) m_modemRSSIMappingFile = value; + else if (::strcmp(key, "UseCOSAsLockout") == 0) + m_modemUseCOSAsLockout = ::atoi(value) == 1; else if (::strcmp(key, "Trace") == 0) m_modemTrace = ::atoi(value) == 1; else if (::strcmp(key, "Debug") == 0)