mirror of
https://github.com/ShaYmez/MMDVM_CM.git
synced 2026-06-04 23:14:56 -04:00
Option to filter callsigns without DMR ID from YSF
This commit is contained in:
committed by
GitHub
parent
e375e1f515
commit
7e39ea2a71
@@ -240,6 +240,8 @@ bool CConf::read()
|
||||
m_dmrIdLookupFile = value;
|
||||
else if (::strcmp(key, "Time") == 0)
|
||||
m_dmrIdLookupTime = (unsigned int)::atoi(value);
|
||||
if (::strcmp(key, "DropUnknown") == 0)
|
||||
m_dmrDropUnknown = ::atoi(value) == 1;
|
||||
} else if (section == SECTION_LOG) {
|
||||
if (::strcmp(key, "FilePath") == 0)
|
||||
m_logFilePath = value;
|
||||
@@ -517,6 +519,11 @@ unsigned int CConf::getDMRIdLookupTime() const
|
||||
return m_dmrIdLookupTime;
|
||||
}
|
||||
|
||||
bool CConf::getDMRDropUnknown() const
|
||||
{
|
||||
return m_dmrDropUnknown;
|
||||
}
|
||||
|
||||
unsigned int CConf::getLogDisplayLevel() const
|
||||
{
|
||||
return m_logDisplayLevel;
|
||||
|
||||
Reference in New Issue
Block a user