Add the missing UseCOSAsLockout configuration option.

This commit is contained in:
Jonathan Naylor 2022-01-31 17:37:24 +00:00
parent 2b34978be1
commit efff4f0dc4
1 changed files with 2 additions and 0 deletions

View File

@ -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)