/* * Copyright (C) 2015-2021 by Jonathan Naylor G4KLX * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "DMRDefines.h" #include "Conf.h" #include "Log.h" #include #include #include #include const int BUFFER_SIZE = 500; enum SECTION { SECTION_NONE, SECTION_GENERAL, SECTION_INFO, SECTION_LOG, SECTION_CWID, SECTION_DMRID_LOOKUP, SECTION_NXDNID_LOOKUP, SECTION_MODEM, SECTION_TRANSPARENT, SECTION_DMR, SECTION_DMR_NETWORK, SECTION_TFTSERIAL, SECTION_HD44780, SECTION_NEXTION, SECTION_OLED, SECTION_LCDPROC, SECTION_LOCK_FILE, SECTION_REMOTE_CONTROL }; CConf::CConf(const std::string& file) : m_file(file), m_callsign(), m_id(0U), m_timeout(120U), m_duplex(true), m_display(), m_daemon(false), m_rxFrequency(0U), m_txFrequency(0U), m_power(0U), m_latitude(0.0F), m_longitude(0.0F), m_height(0), m_location(), m_description(), m_url(), m_logDisplayLevel(0U), m_logFileLevel(0U), m_logFilePath(), m_logFileRoot(), m_logFileRotate(true), m_cwIdEnabled(false), m_cwIdTime(10U), m_cwIdCallsign(), m_dmrIdLookupFile(), m_dmrIdLookupTime(0U), m_nxdnIdLookupFile(), m_nxdnIdLookupTime(0U), m_modemProtocol("uart"), m_modemUARTPort(), m_modemUARTSpeed(115200U), m_modemI2CPort(), m_modemI2CAddress(0x22U), m_modemModemAddress(), m_modemModemPort(0U), m_modemLocalAddress(), m_modemLocalPort(0U), m_modemRXInvert(false), m_modemTXInvert(false), m_modemPTTInvert(false), m_modemTXDelay(100U), m_modemDMRDelay(0U), m_modemTXOffset(0), m_modemRXOffset(0), m_modemRXDCOffset(0), m_modemTXDCOffset(0), m_modemRFLevel(100.0F), m_modemRXLevel(50.0F), m_modemCWIdTXLevel(50.0F), m_modemDMRTXLevel(50.0F), m_modemRSSIMappingFile(), m_modemUseCOSAsLockout(false), m_modemTrace(false), m_modemDebug(false), m_transparentEnabled(false), m_transparentRemoteAddress(), m_transparentRemotePort(0U), m_transparentLocalPort(0U), m_transparentSendFrameType(0U), m_dmrEnabled(false), m_dmrBeacons(DMR_BEACONS_OFF), m_dmrBeaconInterval(60U), m_dmrBeaconDuration(3U), m_dmrId(0U), m_dmrColorCode(2U), m_dmrSelfOnly(false), m_dmrEmbeddedLCOnly(false), m_dmrDumpTAData(true), m_dmrPrefixes(), m_dmrBlackList(), m_dmrWhiteList(), m_dmrSlot1TGWhiteList(), m_dmrSlot2TGWhiteList(), m_dmrCallHang(10U), m_dmrTXHang(4U), m_dmrModeHang(10U), m_dmrOVCM(DMR_OVCM_OFF), m_dmrNetworkEnabled(true), m_dmrNetworkType("Gateway"), m_dmrNetworkRemoteAddress(), m_dmrNetworkRemotePort(0U), m_dmrNetworkLocalAddress(), m_dmrNetworkLocalPort(0U), m_dmrNetworkPassword(), m_dmrNetworkOptions(), m_dmrNetworkDebug(false), m_dmrNetworkJitter(360U), m_dmrNetworkSlot1(true), m_dmrNetworkSlot2(true), m_dmrNetworkModeHang(3U), m_tftSerialPort("/dev/ttyAMA0"), m_tftSerialBrightness(50U), m_hd44780Rows(2U), m_hd44780Columns(16U), m_hd44780Pins(), m_hd44780i2cAddress(), m_hd44780PWM(false), m_hd44780PWMPin(), m_hd44780PWMBright(), m_hd44780PWMDim(), m_hd44780DisplayClock(false), m_hd44780UTC(false), m_nextionPort("/dev/ttyAMA0"), m_nextionBrightness(50U), m_nextionDisplayClock(false), m_nextionUTC(false), m_nextionIdleBrightness(20U), m_nextionScreenLayout(0U), m_nextionTempInFahrenheit(false), m_oledType(3U), m_oledBrightness(0U), m_oledInvert(false), m_oledScroll(false), m_oledRotate(false), m_oledLogoScreensaver(true), m_lcdprocAddress(), m_lcdprocPort(0U), m_lcdprocLocalPort(0U), m_lcdprocDisplayClock(false), m_lcdprocUTC(false), m_lcdprocDimOnIdle(false), m_lockFileEnabled(false), m_lockFileName(), m_remoteControlEnabled(false), m_remoteControlAddress("127.0.0.1"), m_remoteControlPort(0U) { } CConf::~CConf() { } bool CConf::read() { FILE* fp = ::fopen(m_file.c_str(), "rt"); if (fp == NULL) { ::fprintf(stderr, "Couldn't open the .ini file - %s\n", m_file.c_str()); return false; } SECTION section = SECTION_NONE; char buffer[BUFFER_SIZE]; while (::fgets(buffer, BUFFER_SIZE, fp) != NULL) { if (buffer[0U] == '#') continue; if (buffer[0U] == '[') { if (::strncmp(buffer, "[General]", 9U) == 0) section = SECTION_GENERAL; else if (::strncmp(buffer, "[Info]", 6U) == 0) section = SECTION_INFO; else if (::strncmp(buffer, "[Log]", 5U) == 0) section = SECTION_LOG; else if (::strncmp(buffer, "[CW Id]", 7U) == 0) section = SECTION_CWID; else if (::strncmp(buffer, "[DMR Id Lookup]", 15U) == 0) section = SECTION_DMRID_LOOKUP; else if (::strncmp(buffer, "[NXDN Id Lookup]", 16U) == 0) section = SECTION_NXDNID_LOOKUP; else if (::strncmp(buffer, "[Modem]", 7U) == 0) section = SECTION_MODEM; else if (::strncmp(buffer, "[Transparent Data]", 18U) == 0) section = SECTION_TRANSPARENT; else if (::strncmp(buffer, "[DMR]", 5U) == 0) section = SECTION_DMR; else if (::strncmp(buffer, "[DMR Network]", 13U) == 0) section = SECTION_DMR_NETWORK; else if (::strncmp(buffer, "[TFT Serial]", 12U) == 0) section = SECTION_TFTSERIAL; else if (::strncmp(buffer, "[HD44780]", 9U) == 0) section = SECTION_HD44780; else if (::strncmp(buffer, "[Nextion]", 9U) == 0) section = SECTION_NEXTION; else if (::strncmp(buffer, "[OLED]", 6U) == 0) section = SECTION_OLED; else if (::strncmp(buffer, "[LCDproc]", 9U) == 0) section = SECTION_LCDPROC; else if (::strncmp(buffer, "[Lock File]", 11U) == 0) section = SECTION_LOCK_FILE; else if (::strncmp(buffer, "[Remote Control]", 16U) == 0) section = SECTION_REMOTE_CONTROL; else section = SECTION_NONE; continue; } char* key = ::strtok(buffer, " \t=\r\n"); if (key == NULL) continue; char* value = ::strtok(NULL, "\r\n"); if (value == NULL) continue; // Remove quotes from the value size_t len = ::strlen(value); if (len > 1U && *value == '"' && value[len - 1U] == '"') { value[len - 1U] = '\0'; value++; } else { char *p; // if value is not quoted, remove after # (to make comment) if ((p = strchr(value, '#')) != NULL) *p = '\0'; // remove trailing tab/space for (p = value + strlen(value) - 1U; p >= value && (*p == '\t' || *p == ' '); p--) *p = '\0'; } if (section == SECTION_GENERAL) { if (::strcmp(key, "Callsign") == 0) { // Convert the callsign to upper case for (unsigned int i = 0U; value[i] != 0; i++) value[i] = ::toupper(value[i]); } else if (::strcmp(key, "Id") == 0) m_id = m_dmrId = (unsigned int)::atoi(value); else if (::strcmp(key, "Duplex") == 0) m_duplex = ::atoi(value) == 1; else if (::strcmp(key, "ModeHang") == 0) m_dmrNetworkModeHang = m_dmrModeHang = (unsigned int)::atoi(value); else if (::strcmp(key, "RFModeHang") == 0) m_dmrModeHang = (unsigned int)::atoi(value); else if (::strcmp(key, "NetModeHang") == 0) m_dmrNetworkModeHang = (unsigned int)::atoi(value); else if (::strcmp(key, "Display") == 0) m_display = value; else if (::strcmp(key, "Daemon") == 0) m_daemon = ::atoi(value) == 1; } else if (section == SECTION_INFO) { if (::strcmp(key, "TXFrequency") == 0) m_txFrequency = (unsigned int)::atoi(value); else if (::strcmp(key, "RXFrequency") == 0) m_rxFrequency = (unsigned int)::atoi(value); else if (::strcmp(key, "Power") == 0) m_power = (unsigned int)::atoi(value); else if (::strcmp(key, "Latitude") == 0) m_latitude = float(::atof(value)); else if (::strcmp(key, "Longitude") == 0) m_longitude = float(::atof(value)); else if (::strcmp(key, "Height") == 0) m_height = ::atoi(value); else if (::strcmp(key, "Location") == 0) m_location = value; else if (::strcmp(key, "Description") == 0) m_description = value; else if (::strcmp(key, "URL") == 0) m_url = value; } else if (section == SECTION_LOG) { if (::strcmp(key, "FilePath") == 0) m_logFilePath = value; else if (::strcmp(key, "FileRoot") == 0) m_logFileRoot = value; else if (::strcmp(key, "FileLevel") == 0) m_logFileLevel = (unsigned int)::atoi(value); else if (::strcmp(key, "DisplayLevel") == 0) m_logDisplayLevel = (unsigned int)::atoi(value); else if (::strcmp(key, "FileRotate") == 0) m_logFileRotate = ::atoi(value) == 1; } else if (section == SECTION_CWID) { if (::strcmp(key, "Enable") == 0) m_cwIdEnabled = ::atoi(value) == 1; else if (::strcmp(key, "Time") == 0) m_cwIdTime = (unsigned int)::atoi(value); else if (::strcmp(key, "Callsign") == 0) { // Convert the callsign to upper case for (unsigned int i = 0U; value[i] != 0; i++) value[i] = ::toupper(value[i]); m_cwIdCallsign = value; } } else if (section == SECTION_DMRID_LOOKUP) { if (::strcmp(key, "File") == 0) m_dmrIdLookupFile = value; else if (::strcmp(key, "Time") == 0) m_dmrIdLookupTime = (unsigned int)::atoi(value); } else if (section == SECTION_MODEM) { if (::strcmp(key, "Protocol") == 0) m_modemProtocol = value; else if (::strcmp(key, "UARTPort") == 0) m_modemUARTPort = value; else if (::strcmp(key, "UARTSpeed") == 0) m_modemUARTSpeed = (unsigned int)::atoi(value); else if (::strcmp(key, "I2CPort") == 0) m_modemI2CPort = value; else if (::strcmp(key, "I2CAddress") == 0) m_modemI2CAddress = (unsigned int)::strtoul(value, NULL, 16); else if (::strcmp(key, "ModemAddress") == 0) m_modemModemAddress = value; else if (::strcmp(key, "ModemPort") == 0) m_modemModemPort = (unsigned short)::atoi(value); else if (::strcmp(key, "LocalAddress") == 0) m_modemLocalAddress = value; else if (::strcmp(key, "LocalPort") == 0) m_modemLocalPort = (unsigned short)::atoi(value); else if (::strcmp(key, "RXInvert") == 0) m_modemRXInvert = ::atoi(value) == 1; else if (::strcmp(key, "TXInvert") == 0) m_modemTXInvert = ::atoi(value) == 1; else if (::strcmp(key, "PTTInvert") == 0) m_modemPTTInvert = ::atoi(value) == 1; else if (::strcmp(key, "TXDelay") == 0) m_modemTXDelay = (unsigned int)::atoi(value); else if (::strcmp(key, "DMRDelay") == 0) m_modemDMRDelay = (unsigned int)::atoi(value); else if (::strcmp(key, "RXOffset") == 0) m_modemRXOffset = ::atoi(value); else if (::strcmp(key, "TXOffset") == 0) m_modemTXOffset = ::atoi(value); else if (::strcmp(key, "RXDCOffset") == 0) m_modemRXDCOffset = ::atoi(value); else if (::strcmp(key, "TXDCOffset") == 0) m_modemTXDCOffset = ::atoi(value); else if (::strcmp(key, "RFLevel") == 0) m_modemRFLevel = float(::atof(value)); else if (::strcmp(key, "RXLevel") == 0) m_modemRXLevel = float(::atof(value)); else if (::strcmp(key, "TXLevel") == 0) m_modemCWIdTXLevel = m_modemDMRTXLevel = float(::atof(value)); else if (::strcmp(key, "CWIdTXLevel") == 0) m_modemCWIdTXLevel = float(::atof(value)); else if (::strcmp(key, "DMRTXLevel") == 0) m_modemDMRTXLevel = 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) m_modemDebug = ::atoi(value) == 1; } else if (section == SECTION_TRANSPARENT) { if (::strcmp(key, "Enable") == 0) m_transparentEnabled = ::atoi(value) == 1; else if (::strcmp(key, "RemoteAddress") == 0) m_transparentRemoteAddress = value; else if (::strcmp(key, "RemotePort") == 0) m_transparentRemotePort = (unsigned short)::atoi(value); else if (::strcmp(key, "LocalPort") == 0) m_transparentLocalPort = (unsigned short)::atoi(value); else if (::strcmp(key, "SendFrameType") == 0) m_transparentSendFrameType = (unsigned int)::atoi(value); } else if (section == SECTION_DMR) { if (::strcmp(key, "Enable") == 0) m_dmrEnabled = ::atoi(value) == 1; else if (::strcmp(key, "Beacons") == 0) m_dmrBeacons = ::atoi(value) == 1 ? DMR_BEACONS_NETWORK : DMR_BEACONS_OFF; else if (::strcmp(key, "BeaconInterval") == 0) { m_dmrBeacons = m_dmrBeacons != DMR_BEACONS_OFF ? DMR_BEACONS_TIMED : DMR_BEACONS_OFF; m_dmrBeaconInterval = (unsigned int)::atoi(value); } else if (::strcmp(key, "BeaconDuration") == 0) m_dmrBeaconDuration = (unsigned int)::atoi(value); else if (::strcmp(key, "Id") == 0) m_dmrId = (unsigned int)::atoi(value); else if (::strcmp(key, "ColorCode") == 0) m_dmrColorCode = (unsigned int)::atoi(value); else if (::strcmp(key, "SelfOnly") == 0) m_dmrSelfOnly = ::atoi(value) == 1; else if (::strcmp(key, "EmbeddedLCOnly") == 0) m_dmrEmbeddedLCOnly = ::atoi(value) == 1; else if (::strcmp(key, "DumpTAData") == 0) m_dmrDumpTAData = ::atoi(value) == 1; else if (::strcmp(key, "Prefixes") == 0) { char* p = ::strtok(value, ",\r\n"); while (p != NULL) { unsigned int prefix = (unsigned int)::atoi(p); if (prefix > 0U && prefix <= 999U) m_dmrPrefixes.push_back(prefix); p = ::strtok(NULL, ",\r\n"); } } else if (::strcmp(key, "BlackList") == 0) { char* p = ::strtok(value, ",\r\n"); while (p != NULL) { unsigned int id = (unsigned int)::atoi(p); if (id > 0U) m_dmrBlackList.push_back(id); p = ::strtok(NULL, ",\r\n"); } } else if (::strcmp(key, "WhiteList") == 0) { char* p = ::strtok(value, ",\r\n"); while (p != NULL) { unsigned int id = (unsigned int)::atoi(p); if (id > 0U) m_dmrWhiteList.push_back(id); p = ::strtok(NULL, ",\r\n"); } } else if (::strcmp(key, "Slot1TGWhiteList") == 0) { char* p = ::strtok(value, ",\r\n"); while (p != NULL) { unsigned int id = (unsigned int)::atoi(p); if (id > 0U) m_dmrSlot1TGWhiteList.push_back(id); p = ::strtok(NULL, ",\r\n"); } } else if (::strcmp(key, "Slot2TGWhiteList") == 0) { char* p = ::strtok(value, ",\r\n"); while (p != NULL) { unsigned int id = (unsigned int)::atoi(p); if (id > 0U) m_dmrSlot2TGWhiteList.push_back(id); p = ::strtok(NULL, ",\r\n"); } } else if (::strcmp(key, "TXHang") == 0) m_dmrTXHang = (unsigned int)::atoi(value); else if (::strcmp(key, "CallHang") == 0) m_dmrCallHang = (unsigned int)::atoi(value); else if (::strcmp(key, "ModeHang") == 0) m_dmrModeHang = (unsigned int)::atoi(value); else if (::strcmp(key, "OVCM") == 0) { switch (::atoi(value)) { case 1: m_dmrOVCM = DMR_OVCM_RX_ON; break; case 2: m_dmrOVCM = DMR_OVCM_TX_ON; break; case 3: m_dmrOVCM = DMR_OVCM_ON; break; case 4: m_dmrOVCM = DMR_OVCM_FORCE_OFF; break; default: m_dmrOVCM = DMR_OVCM_OFF; break; } } } else if (section == SECTION_DMR_NETWORK) { if (::strcmp(key, "Enable") == 0) m_dmrNetworkEnabled = ::atoi(value) == 1; else if (::strcmp(key, "Type") == 0) m_dmrNetworkType = value; else if (::strcmp(key, "RemoteAddress") == 0) m_dmrNetworkRemoteAddress = value; else if (::strcmp(key, "RemotePort") == 0) m_dmrNetworkRemotePort = (unsigned short)::atoi(value); else if (::strcmp(key, "LocalAddress") == 0) m_dmrNetworkLocalAddress = value; else if (::strcmp(key, "LocalPort") == 0) m_dmrNetworkLocalPort = (unsigned short)::atoi(value); else if (::strcmp(key, "Password") == 0) m_dmrNetworkPassword = value; else if (::strcmp(key, "Options") == 0) m_dmrNetworkOptions = value; else if (::strcmp(key, "Debug") == 0) m_dmrNetworkDebug = ::atoi(value) == 1; else if (::strcmp(key, "Jitter") == 0) m_dmrNetworkJitter = (unsigned int)::atoi(value); else if (::strcmp(key, "Slot1") == 0) m_dmrNetworkSlot1 = ::atoi(value) == 1; else if (::strcmp(key, "Slot2") == 0) m_dmrNetworkSlot2 = ::atoi(value) == 1; else if (::strcmp(key, "ModeHang") == 0) m_dmrNetworkModeHang = (unsigned int)::atoi(value); } else if (section == SECTION_TFTSERIAL) { if (::strcmp(key, "Port") == 0) m_tftSerialPort = value; else if (::strcmp(key, "Brightness") == 0) m_tftSerialBrightness = (unsigned int)::atoi(value); } else if (section == SECTION_HD44780) { if (::strcmp(key, "Rows") == 0) m_hd44780Rows = (unsigned int)::atoi(value); else if (::strcmp(key, "Columns") == 0) m_hd44780Columns = (unsigned int)::atoi(value); else if (::strcmp(key, "I2CAddress") == 0) m_hd44780i2cAddress = (unsigned int)::strtoul(value, NULL, 16); else if (::strcmp(key, "PWM") == 0) m_hd44780PWM = ::atoi(value) == 1; else if (::strcmp(key, "PWMPin") == 0) m_hd44780PWMPin = (unsigned int)::atoi(value); else if (::strcmp(key, "PWMBright") == 0) m_hd44780PWMBright = (unsigned int)::atoi(value); else if (::strcmp(key, "PWMDim") == 0) m_hd44780PWMDim = (unsigned int)::atoi(value); else if (::strcmp(key, "DisplayClock") == 0) m_hd44780DisplayClock = ::atoi(value) == 1; else if (::strcmp(key, "UTC") == 0) m_hd44780UTC = ::atoi(value) == 1; else if (::strcmp(key, "Pins") == 0) { char* p = ::strtok(value, ",\r\n"); while (p != NULL) { unsigned int pin = (unsigned int)::atoi(p); m_hd44780Pins.push_back(pin); p = ::strtok(NULL, ",\r\n"); } } } else if (section == SECTION_NEXTION) { if (::strcmp(key, "Port") == 0) m_nextionPort = value; else if (::strcmp(key, "Brightness") == 0) m_nextionIdleBrightness = m_nextionBrightness = (unsigned int)::atoi(value); else if (::strcmp(key, "DisplayClock") == 0) m_nextionDisplayClock = ::atoi(value) == 1; else if (::strcmp(key, "UTC") == 0) m_nextionUTC = ::atoi(value) == 1; else if (::strcmp(key, "IdleBrightness") == 0) m_nextionIdleBrightness = (unsigned int)::atoi(value); else if (::strcmp(key, "ScreenLayout") == 0) m_nextionScreenLayout = (unsigned int)::strtoul(value, NULL, 0); else if (::strcmp(key, "DisplayTempInFahrenheit") == 0) m_nextionTempInFahrenheit = ::atoi(value) == 1; } else if (section == SECTION_OLED) { if (::strcmp(key, "Type") == 0) m_oledType = (unsigned char)::atoi(value); else if (::strcmp(key, "Brightness") == 0) m_oledBrightness = (unsigned char)::atoi(value); else if (::strcmp(key, "Invert") == 0) m_oledInvert = ::atoi(value) == 1; else if (::strcmp(key, "Scroll") == 0) m_oledScroll = ::atoi(value) == 1; else if (::strcmp(key, "Rotate") == 0) m_oledRotate = ::atoi(value) == 1; else if (::strcmp(key, "LogoScreensaver") == 0) m_oledLogoScreensaver = ::atoi(value) == 1; } else if (section == SECTION_LCDPROC) { if (::strcmp(key, "Address") == 0) m_lcdprocAddress = value; else if (::strcmp(key, "Port") == 0) m_lcdprocPort = (unsigned short)::atoi(value); else if (::strcmp(key, "LocalPort") == 0) m_lcdprocLocalPort = (unsigned short)::atoi(value); else if (::strcmp(key, "DisplayClock") == 0) m_lcdprocDisplayClock = ::atoi(value) == 1; else if (::strcmp(key, "UTC") == 0) m_lcdprocUTC = ::atoi(value) == 1; else if (::strcmp(key, "DimOnIdle") == 0) m_lcdprocDimOnIdle = ::atoi(value) == 1; } else if (section == SECTION_LOCK_FILE) { if (::strcmp(key, "Enable") == 0) m_lockFileEnabled = ::atoi(value) == 1; else if (::strcmp(key, "File") == 0) m_lockFileName = value; } else if (section == SECTION_REMOTE_CONTROL) { if (::strcmp(key, "Enable") == 0) m_remoteControlEnabled = ::atoi(value) == 1; else if (::strcmp(key, "Port") == 0) m_remoteControlPort = (unsigned short)::atoi(value); } } ::fclose(fp); return true; } std::string CConf::getCallsign() const { return m_callsign; } unsigned int CConf::getId() const { return m_id; } unsigned int CConf::getTimeout() const { return m_timeout; } bool CConf::getDuplex() const { return m_duplex; } std::string CConf::getDisplay() const { return m_display; } bool CConf::getDaemon() const { return m_daemon; } unsigned int CConf::getRXFrequency() const { return m_rxFrequency; } unsigned int CConf::getTXFrequency() const { return m_txFrequency; } unsigned int CConf::getPower() const { return m_power; } float CConf::getLatitude() const { return m_latitude; } float CConf::getLongitude() const { return m_longitude; } int CConf::getHeight() const { return m_height; } std::string CConf::getLocation() const { return m_location; } std::string CConf::getDescription() const { return m_description; } std::string CConf::getURL() const { return m_url; } unsigned int CConf::getLogDisplayLevel() const { return m_logDisplayLevel; } unsigned int CConf::getLogFileLevel() const { return m_logFileLevel; } std::string CConf::getLogFilePath() const { return m_logFilePath; } std::string CConf::getLogFileRoot() const { return m_logFileRoot; } bool CConf::getLogFileRotate() const { return m_logFileRotate; } bool CConf::getCWIdEnabled() const { return m_cwIdEnabled; } unsigned int CConf::getCWIdTime() const { return m_cwIdTime; } std::string CConf::getCWIdCallsign() const { return m_cwIdCallsign; } std::string CConf::getDMRIdLookupFile() const { return m_dmrIdLookupFile; } unsigned int CConf::getDMRIdLookupTime() const { return m_dmrIdLookupTime; } std::string CConf::getModemProtocol() const { return m_modemProtocol; } std::string CConf::getModemUARTPort() const { return m_modemUARTPort; } unsigned int CConf::getModemUARTSpeed() const { return m_modemUARTSpeed; } std::string CConf::getModemI2CPort() const { return m_modemI2CPort; } unsigned int CConf::getModemI2CAddress() const { return m_modemI2CAddress; } std::string CConf::getModemModemAddress() const { return m_modemModemAddress; } unsigned short CConf::getModemModemPort() const { return m_modemModemPort; } std::string CConf::getModemLocalAddress() const { return m_modemLocalAddress; } unsigned short CConf::getModemLocalPort() const { return m_modemLocalPort; } bool CConf::getModemRXInvert() const { return m_modemRXInvert; } bool CConf::getModemTXInvert() const { return m_modemTXInvert; } bool CConf::getModemPTTInvert() const { return m_modemPTTInvert; } unsigned int CConf::getModemTXDelay() const { return m_modemTXDelay; } unsigned int CConf::getModemDMRDelay() const { return m_modemDMRDelay; } int CConf::getModemRXOffset() const { return m_modemRXOffset; } int CConf::getModemTXOffset() const { return m_modemTXOffset; } int CConf::getModemRXDCOffset() const { return m_modemRXDCOffset; } int CConf::getModemTXDCOffset() const { return m_modemTXDCOffset; } float CConf::getModemRFLevel() const { return m_modemRFLevel; } float CConf::getModemRXLevel() const { return m_modemRXLevel; } float CConf::getModemCWIdTXLevel() const { return m_modemCWIdTXLevel; } float CConf::getModemDMRTXLevel() const { return m_modemDMRTXLevel; } std::string CConf::getModemRSSIMappingFile () const { return m_modemRSSIMappingFile; } bool CConf::getModemUseCOSAsLockout() const { return m_modemUseCOSAsLockout; } bool CConf::getModemTrace() const { return m_modemTrace; } bool CConf::getModemDebug() const { return m_modemDebug; } bool CConf::getTransparentEnabled() const { return m_transparentEnabled; } std::string CConf::getTransparentRemoteAddress() const { return m_transparentRemoteAddress; } unsigned short CConf::getTransparentRemotePort() const { return m_transparentRemotePort; } unsigned short CConf::getTransparentLocalPort() const { return m_transparentLocalPort; } unsigned int CConf::getTransparentSendFrameType() const { return m_transparentSendFrameType; } bool CConf::getDMREnabled() const { return m_dmrEnabled; } DMR_BEACONS CConf::getDMRBeacons() const { return m_dmrBeacons; } unsigned int CConf::getDMRBeaconInterval() const { return m_dmrBeaconInterval; } unsigned int CConf::getDMRBeaconDuration() const { return m_dmrBeaconDuration; } unsigned int CConf::getDMRId() const { return m_dmrId; } unsigned int CConf::getDMRColorCode() const { return m_dmrColorCode; } bool CConf::getDMRSelfOnly() const { return m_dmrSelfOnly; } bool CConf::getDMREmbeddedLCOnly() const { return m_dmrEmbeddedLCOnly; } bool CConf::getDMRDumpTAData() const { return m_dmrDumpTAData; } std::vector CConf::getDMRPrefixes() const { return m_dmrPrefixes; } std::vector CConf::getDMRBlackList() const { return m_dmrBlackList; } std::vector CConf::getDMRWhiteList() const { return m_dmrWhiteList; } std::vector CConf::getDMRSlot1TGWhiteList() const { return m_dmrSlot1TGWhiteList; } std::vector CConf::getDMRSlot2TGWhiteList() const { return m_dmrSlot2TGWhiteList; } unsigned int CConf::getDMRCallHang() const { return m_dmrCallHang; } unsigned int CConf::getDMRTXHang() const { return m_dmrTXHang; } unsigned int CConf::getDMRModeHang() const { return m_dmrModeHang; } DMR_OVCM_TYPES CConf::getDMROVCM() const { return m_dmrOVCM; } bool CConf::getDMRNetworkEnabled() const { return m_dmrNetworkEnabled; } std::string CConf::getDMRNetworkType() const { return m_dmrNetworkType; } std::string CConf::getDMRNetworkRemoteAddress() const { return m_dmrNetworkRemoteAddress; } unsigned short CConf::getDMRNetworkRemotePort() const { return m_dmrNetworkRemotePort; } std::string CConf::getDMRNetworkLocalAddress() const { return m_dmrNetworkLocalAddress; } unsigned short CConf::getDMRNetworkLocalPort() const { return m_dmrNetworkLocalPort; } std::string CConf::getDMRNetworkPassword() const { return m_dmrNetworkPassword; } std::string CConf::getDMRNetworkOptions() const { return m_dmrNetworkOptions; } unsigned int CConf::getDMRNetworkModeHang() const { return m_dmrNetworkModeHang; } bool CConf::getDMRNetworkDebug() const { return m_dmrNetworkDebug; } unsigned int CConf::getDMRNetworkJitter() const { return m_dmrNetworkJitter; } bool CConf::getDMRNetworkSlot1() const { return m_dmrNetworkSlot1; } bool CConf::getDMRNetworkSlot2() const { return m_dmrNetworkSlot2; } std::string CConf::getTFTSerialPort() const { return m_tftSerialPort; } unsigned int CConf::getTFTSerialBrightness() const { return m_tftSerialBrightness; } unsigned int CConf::getHD44780Rows() const { return m_hd44780Rows; } unsigned int CConf::getHD44780Columns() const { return m_hd44780Columns; } std::vector CConf::getHD44780Pins() const { return m_hd44780Pins; } unsigned int CConf::getHD44780i2cAddress() const { return m_hd44780i2cAddress; } bool CConf::getHD44780PWM() const { return m_hd44780PWM; } unsigned int CConf::getHD44780PWMPin() const { return m_hd44780PWMPin; } unsigned int CConf::getHD44780PWMBright() const { return m_hd44780PWMBright; } unsigned int CConf::getHD44780PWMDim() const { return m_hd44780PWMDim; } bool CConf::getHD44780DisplayClock() const { return m_hd44780DisplayClock; } bool CConf::getHD44780UTC() const { return m_hd44780UTC; } std::string CConf::getNextionPort() const { return m_nextionPort; } unsigned int CConf::getNextionBrightness() const { return m_nextionBrightness; } bool CConf::getNextionDisplayClock() const { return m_nextionDisplayClock; } bool CConf::getNextionUTC() const { return m_nextionUTC; } unsigned int CConf::getNextionIdleBrightness() const { return m_nextionIdleBrightness; } unsigned int CConf::getNextionScreenLayout() const { return m_nextionScreenLayout; } unsigned char CConf::getOLEDType() const { return m_oledType; } unsigned char CConf::getOLEDBrightness() const { return m_oledBrightness; } bool CConf::getOLEDInvert() const { return m_oledInvert; } bool CConf::getOLEDScroll() const { return m_oledScroll; } bool CConf::getOLEDRotate() const { return m_oledRotate; } bool CConf::getOLEDLogoScreensaver() const { return m_oledLogoScreensaver; } std::string CConf::getLCDprocAddress() const { return m_lcdprocAddress; } unsigned short CConf::getLCDprocPort() const { return m_lcdprocPort; } unsigned short CConf::getLCDprocLocalPort() const { return m_lcdprocLocalPort; } bool CConf::getLCDprocDisplayClock() const { return m_lcdprocDisplayClock; } bool CConf::getLCDprocUTC() const { return m_lcdprocUTC; } bool CConf::getLCDprocDimOnIdle() const { return m_lcdprocDimOnIdle; } bool CConf::getNextionTempInFahrenheit() const { return m_nextionTempInFahrenheit; } bool CConf::getLockFileEnabled() const { return m_lockFileEnabled; } std::string CConf::getLockFileName() const { return m_lockFileName; } bool CConf::getRemoteControlEnabled() const { return m_remoteControlEnabled; } std::string CConf::getRemoteControlAddress() const { return m_remoteControlAddress; } unsigned short CConf::getRemoteControlPort() const { return m_remoteControlPort; }