2016-01-14 18:45:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015,2016 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.
|
|
|
|
*/
|
|
|
|
|
2016-04-06 17:46:05 +00:00
|
|
|
#include "DStarDefines.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
#include "Conf.h"
|
|
|
|
#include "Log.h"
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
2016-04-06 17:46:05 +00:00
|
|
|
#include <cctype>
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
const int BUFFER_SIZE = 500;
|
|
|
|
|
|
|
|
enum SECTION {
|
|
|
|
SECTION_NONE,
|
|
|
|
SECTION_GENERAL,
|
|
|
|
SECTION_INFO,
|
|
|
|
SECTION_LOG,
|
|
|
|
SECTION_MODEM,
|
|
|
|
SECTION_DSTAR,
|
|
|
|
SECTION_DMR,
|
|
|
|
SECTION_FUSION,
|
|
|
|
SECTION_DSTAR_NETWORK,
|
|
|
|
SECTION_DMR_NETWORK,
|
|
|
|
SECTION_FUSION_NETWORK,
|
2016-03-14 22:58:09 +00:00
|
|
|
SECTION_TFTSERIAL,
|
2016-04-06 18:53:25 +00:00
|
|
|
SECTION_HD44780,
|
|
|
|
SECTION_NEXTION
|
2016-01-14 18:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
CConf::CConf(const std::string& file) :
|
|
|
|
m_file(file),
|
|
|
|
m_callsign(),
|
|
|
|
m_timeout(120U),
|
|
|
|
m_duplex(true),
|
|
|
|
m_modeHang(10U),
|
|
|
|
m_display(),
|
|
|
|
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(),
|
2016-03-07 18:42:05 +00:00
|
|
|
m_logDisplayLevel(0U),
|
|
|
|
m_logFileLevel(0U),
|
|
|
|
m_logFilePath(),
|
|
|
|
m_logFileRoot(),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_modemPort(),
|
|
|
|
m_modemRXInvert(false),
|
|
|
|
m_modemTXInvert(false),
|
|
|
|
m_modemPTTInvert(false),
|
|
|
|
m_modemTXDelay(100U),
|
2016-03-17 18:12:14 +00:00
|
|
|
m_modemDMRDelay(0U),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_modemRXLevel(100U),
|
|
|
|
m_modemTXLevel(100U),
|
2016-03-21 21:50:45 +00:00
|
|
|
m_modemOscOffset(0),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_modemDebug(false),
|
|
|
|
m_dstarEnabled(true),
|
|
|
|
m_dstarModule("C"),
|
2016-04-04 16:40:05 +00:00
|
|
|
m_dstarSelfOnly(false),
|
2016-04-06 17:46:05 +00:00
|
|
|
m_dstarBlackList(),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dmrEnabled(true),
|
2016-01-14 19:58:16 +00:00
|
|
|
m_dmrBeacons(false),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dmrId(0U),
|
|
|
|
m_dmrColorCode(2U),
|
2016-04-04 16:40:05 +00:00
|
|
|
m_dmrSelfOnly(false),
|
2016-04-04 18:03:38 +00:00
|
|
|
m_dmrPrefixes(),
|
2016-04-06 17:46:05 +00:00
|
|
|
m_dmrBlackList(),
|
2016-04-12 17:26:13 +00:00
|
|
|
m_dmrLookupFile(),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_fusionEnabled(true),
|
2016-02-22 21:13:48 +00:00
|
|
|
m_fusionParrotEnabled(false),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dstarNetworkEnabled(true),
|
|
|
|
m_dstarGatewayAddress(),
|
|
|
|
m_dstarGatewayPort(0U),
|
|
|
|
m_dstarLocalPort(0U),
|
|
|
|
m_dstarNetworkDebug(false),
|
|
|
|
m_dmrNetworkEnabled(true),
|
|
|
|
m_dmrNetworkAddress(),
|
|
|
|
m_dmrNetworkPort(0U),
|
2016-04-03 18:11:45 +00:00
|
|
|
m_dmrNetworkLocal(0U),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dmrNetworkPassword(),
|
|
|
|
m_dmrNetworkDebug(false),
|
2016-02-15 20:36:05 +00:00
|
|
|
m_dmrNetworkSlot1(true),
|
|
|
|
m_dmrNetworkSlot2(true),
|
2016-01-14 18:45:04 +00:00
|
|
|
m_fusionNetworkEnabled(false),
|
|
|
|
m_fusionNetworkAddress(),
|
|
|
|
m_fusionNetworkPort(0U),
|
|
|
|
m_fusionNetworkDebug(false),
|
2016-02-16 18:30:12 +00:00
|
|
|
m_tftSerialPort(),
|
2016-03-14 22:58:09 +00:00
|
|
|
m_tftSerialBrightness(50U),
|
|
|
|
m_hd44780Rows(2U),
|
2016-04-06 16:43:20 +00:00
|
|
|
m_hd44780Columns(16U),
|
2016-04-06 18:53:25 +00:00
|
|
|
m_hd44780Pins(),
|
|
|
|
m_nextionPort(),
|
|
|
|
m_nextionBrightness(50U)
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
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, "[Modem]", 7U) == 0)
|
|
|
|
section = SECTION_MODEM;
|
|
|
|
else if (::strncmp(buffer, "[D-Star]", 8U) == 0)
|
|
|
|
section = SECTION_DSTAR;
|
|
|
|
else if (::strncmp(buffer, "[DMR]", 5U) == 0)
|
|
|
|
section = SECTION_DMR;
|
|
|
|
else if (::strncmp(buffer, "[System Fusion]", 15U) == 0)
|
|
|
|
section = SECTION_FUSION;
|
|
|
|
else if (::strncmp(buffer, "[D-Star Network]", 16U) == 0)
|
|
|
|
section = SECTION_DSTAR_NETWORK;
|
|
|
|
else if (::strncmp(buffer, "[DMR Network]", 13U) == 0)
|
|
|
|
section = SECTION_DMR_NETWORK;
|
|
|
|
else if (::strncmp(buffer, "[System Fusion Network]", 23U) == 0)
|
|
|
|
section = SECTION_FUSION_NETWORK;
|
2016-03-14 22:58:09 +00:00
|
|
|
else if (::strncmp(buffer, "[TFT Serial]", 12U) == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
section = SECTION_TFTSERIAL;
|
2016-03-14 22:58:09 +00:00
|
|
|
else if (::strncmp(buffer, "[HD44780]", 9U) == 0)
|
|
|
|
section = SECTION_HD44780;
|
2016-04-06 18:53:25 +00:00
|
|
|
else if (::strncmp(buffer, "[Nextion]", 9U) == 0)
|
|
|
|
section = SECTION_NEXTION;
|
2016-03-14 22:58:09 +00:00
|
|
|
else
|
2016-01-14 18:45:04 +00:00
|
|
|
section = SECTION_NONE;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* key = ::strtok(buffer, " \t=\r\n");
|
|
|
|
if (key == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
char* value = ::strtok(NULL, "\r\n");
|
|
|
|
if (section == SECTION_GENERAL) {
|
2016-04-19 16:25:13 +00:00
|
|
|
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]);
|
2016-01-14 18:45:04 +00:00
|
|
|
m_callsign = value;
|
2016-04-19 16:25:13 +00:00
|
|
|
} else if (::strcmp(key, "Timeout") == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
m_timeout = (unsigned int)::atoi(value);
|
|
|
|
else if (::strcmp(key, "Duplex") == 0)
|
|
|
|
m_duplex = ::atoi(value) == 1;
|
|
|
|
else if (::strcmp(key, "ModeHang") == 0)
|
|
|
|
m_modeHang = (unsigned int)::atoi(value);
|
|
|
|
else if (::strcmp(key, "Display") == 0)
|
|
|
|
m_display = value;
|
|
|
|
} 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) {
|
2016-03-07 18:42:05 +00:00
|
|
|
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);
|
2016-01-14 18:45:04 +00:00
|
|
|
} else if (section == SECTION_MODEM) {
|
|
|
|
if (::strcmp(key, "Port") == 0)
|
|
|
|
m_modemPort = 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);
|
2016-03-17 18:12:14 +00:00
|
|
|
else if (::strcmp(key, "DMRDelay") == 0)
|
|
|
|
m_modemDMRDelay = (unsigned int)::atoi(value);
|
2016-01-14 18:45:04 +00:00
|
|
|
else if (::strcmp(key, "RXLevel") == 0)
|
|
|
|
m_modemRXLevel = (unsigned int)::atoi(value);
|
|
|
|
else if (::strcmp(key, "TXLevel") == 0)
|
|
|
|
m_modemTXLevel = (unsigned int)::atoi(value);
|
2016-03-21 21:50:45 +00:00
|
|
|
else if (::strcmp(key, "OscOffset") == 0)
|
|
|
|
m_modemOscOffset = ::atoi(value);
|
2016-01-14 18:45:04 +00:00
|
|
|
else if (::strcmp(key, "Debug") == 0)
|
|
|
|
m_modemDebug = ::atoi(value) == 1;
|
|
|
|
} else if (section == SECTION_DSTAR) {
|
2016-01-18 21:24:41 +00:00
|
|
|
if (::strcmp(key, "Enable") == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dstarEnabled = ::atoi(value) == 1;
|
2016-04-19 16:27:00 +00:00
|
|
|
else if (::strcmp(key, "Module") == 0) {
|
|
|
|
// Convert the module to upper case
|
|
|
|
for (unsigned int i = 0U; value[i] != 0; i++)
|
|
|
|
value[i] = ::toupper(value[i]);
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dstarModule = value;
|
2016-04-19 16:27:00 +00:00
|
|
|
} else if (::strcmp(key, "SelfOnly") == 0)
|
2016-04-04 16:40:05 +00:00
|
|
|
m_dstarSelfOnly = ::atoi(value) == 1;
|
2016-04-06 17:46:05 +00:00
|
|
|
else if (::strcmp(key, "BlackList") == 0) {
|
|
|
|
char* p = ::strtok(value, ",\r\n");
|
|
|
|
while (p != NULL) {
|
|
|
|
if (::strlen(p) > 0U) {
|
2016-04-19 16:25:13 +00:00
|
|
|
for (unsigned int i = 0U; p[i] != 0; i++)
|
2016-04-06 17:46:05 +00:00
|
|
|
p[i] = ::toupper(p[i]);
|
|
|
|
std::string callsign = std::string(p);
|
|
|
|
callsign.resize(DSTAR_LONG_CALLSIGN_LENGTH, ' ');
|
|
|
|
m_dstarBlackList.push_back(callsign);
|
|
|
|
}
|
|
|
|
p = ::strtok(NULL, ",\r\n");
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 18:45:04 +00:00
|
|
|
} else if (section == SECTION_DMR) {
|
2016-01-18 21:24:41 +00:00
|
|
|
if (::strcmp(key, "Enable") == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dmrEnabled = ::atoi(value) == 1;
|
2016-01-14 19:58:16 +00:00
|
|
|
else if (::strcmp(key, "Beacons") == 0)
|
|
|
|
m_dmrBeacons = ::atoi(value) == 1;
|
2016-01-14 18:45:04 +00:00
|
|
|
else if (::strcmp(key, "Id") == 0)
|
|
|
|
m_dmrId = (unsigned int)::atoi(value);
|
|
|
|
else if (::strcmp(key, "ColorCode") == 0)
|
|
|
|
m_dmrColorCode = (unsigned int)::atoi(value);
|
2016-04-04 16:40:05 +00:00
|
|
|
else if (::strcmp(key, "SelfOnly") == 0)
|
|
|
|
m_dmrSelfOnly = ::atoi(value) == 1;
|
2016-04-04 18:03:38 +00:00
|
|
|
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");
|
|
|
|
}
|
2016-04-06 17:46:05 +00:00
|
|
|
} 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");
|
|
|
|
}
|
2016-04-12 17:26:13 +00:00
|
|
|
} else if (::strcmp(key, "LookupFile") == 0)
|
|
|
|
m_dmrLookupFile = value;
|
2016-01-14 18:45:04 +00:00
|
|
|
} else if (section == SECTION_FUSION) {
|
2016-01-18 21:24:41 +00:00
|
|
|
if (::strcmp(key, "Enable") == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
m_fusionEnabled = ::atoi(value) == 1;
|
2016-02-22 21:13:48 +00:00
|
|
|
else if (::strcmp(key, "Parrot") == 0)
|
|
|
|
m_fusionParrotEnabled = ::atoi(value) == 1;
|
2016-01-14 18:45:04 +00:00
|
|
|
} else if (section == SECTION_DSTAR_NETWORK) {
|
2016-01-18 21:24:41 +00:00
|
|
|
if (::strcmp(key, "Enable") == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dstarNetworkEnabled = ::atoi(value) == 1;
|
|
|
|
else if (::strcmp(key, "GatewayAddress") == 0)
|
|
|
|
m_dstarGatewayAddress = value;
|
|
|
|
else if (::strcmp(key, "GatewayPort") == 0)
|
|
|
|
m_dstarGatewayPort = (unsigned int)::atoi(value);
|
|
|
|
else if (::strcmp(key, "LocalPort") == 0)
|
|
|
|
m_dstarLocalPort = (unsigned int)::atoi(value);
|
|
|
|
else if (::strcmp(key, "Debug") == 0)
|
|
|
|
m_dstarNetworkDebug = ::atoi(value) == 1;
|
|
|
|
} else if (section == SECTION_DMR_NETWORK) {
|
2016-01-18 21:24:41 +00:00
|
|
|
if (::strcmp(key, "Enable") == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
m_dmrNetworkEnabled = ::atoi(value) == 1;
|
|
|
|
else if (::strcmp(key, "Address") == 0)
|
|
|
|
m_dmrNetworkAddress = value;
|
|
|
|
else if (::strcmp(key, "Port") == 0)
|
|
|
|
m_dmrNetworkPort = (unsigned int)::atoi(value);
|
2016-04-03 18:11:45 +00:00
|
|
|
else if (::strcmp(key, "Local") == 0)
|
|
|
|
m_dmrNetworkLocal = (unsigned int)::atoi(value);
|
2016-01-14 18:45:04 +00:00
|
|
|
else if (::strcmp(key, "Password") == 0)
|
|
|
|
m_dmrNetworkPassword = value;
|
|
|
|
else if (::strcmp(key, "Debug") == 0)
|
|
|
|
m_dmrNetworkDebug = ::atoi(value) == 1;
|
2016-02-15 20:36:05 +00:00
|
|
|
else if (::strcmp(key, "Slot1") == 0)
|
|
|
|
m_dmrNetworkSlot1 = ::atoi(value) == 1;
|
|
|
|
else if (::strcmp(key, "Slot2") == 0)
|
|
|
|
m_dmrNetworkSlot2 = ::atoi(value) == 1;
|
2016-01-14 18:45:04 +00:00
|
|
|
} else if (section == SECTION_FUSION_NETWORK) {
|
2016-01-18 21:24:41 +00:00
|
|
|
if (::strcmp(key, "Enable") == 0)
|
2016-01-14 18:45:04 +00:00
|
|
|
m_fusionNetworkEnabled = ::atoi(value) == 1;
|
|
|
|
else if (::strcmp(key, "Address") == 0)
|
|
|
|
m_fusionNetworkAddress = value;
|
|
|
|
else if (::strcmp(key, "Port") == 0)
|
|
|
|
m_fusionNetworkPort = (unsigned int)::atoi(value);
|
|
|
|
else if (::strcmp(key, "Debug") == 0)
|
|
|
|
m_fusionNetworkDebug = ::atoi(value) == 1;
|
|
|
|
} else if (section == SECTION_TFTSERIAL) {
|
|
|
|
if (::strcmp(key, "Port") == 0)
|
|
|
|
m_tftSerialPort = value;
|
2016-02-16 18:30:12 +00:00
|
|
|
else if (::strcmp(key, "Brightness") == 0)
|
|
|
|
m_tftSerialBrightness = (unsigned int)::atoi(value);
|
2016-03-14 22:58:09 +00:00
|
|
|
} 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);
|
2016-04-06 16:43:20 +00:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
}
|
2016-04-06 18:53:25 +00:00
|
|
|
} else if (section == SECTION_NEXTION) {
|
|
|
|
if (::strcmp(key, "Port") == 0)
|
|
|
|
m_nextionPort = value;
|
|
|
|
else if (::strcmp(key, "Brightness") == 0)
|
|
|
|
m_nextionBrightness = (unsigned int)::atoi(value);
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
::fclose(fp);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getCallsign() const
|
|
|
|
{
|
|
|
|
return m_callsign;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getTimeout() const
|
|
|
|
{
|
|
|
|
return m_timeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CConf::getDuplex() const
|
|
|
|
{
|
|
|
|
return m_duplex;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getModeHang() const
|
|
|
|
{
|
|
|
|
return m_modeHang;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getDisplay() const
|
|
|
|
{
|
|
|
|
return m_display;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-07 18:42:05 +00:00
|
|
|
unsigned int CConf::getLogDisplayLevel() const
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-03-07 18:42:05 +00:00
|
|
|
return m_logDisplayLevel;
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-07 18:42:05 +00:00
|
|
|
unsigned int CConf::getLogFileLevel() const
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-03-07 18:42:05 +00:00
|
|
|
return m_logFileLevel;
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-07 18:42:05 +00:00
|
|
|
std::string CConf::getLogFilePath() const
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-03-07 18:42:05 +00:00
|
|
|
return m_logFilePath;
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-07 18:42:05 +00:00
|
|
|
std::string CConf::getLogFileRoot() const
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
2016-03-07 18:42:05 +00:00
|
|
|
return m_logFileRoot;
|
2016-01-14 18:45:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getModemPort() const
|
|
|
|
{
|
|
|
|
return m_modemPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-03-17 18:12:14 +00:00
|
|
|
unsigned int CConf::getModemDMRDelay() const
|
|
|
|
{
|
|
|
|
return m_modemDMRDelay;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
unsigned int CConf::getModemRXLevel() const
|
|
|
|
{
|
|
|
|
return m_modemRXLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getModemTXLevel() const
|
|
|
|
{
|
|
|
|
return m_modemTXLevel;
|
|
|
|
}
|
|
|
|
|
2016-03-21 21:50:45 +00:00
|
|
|
int CConf::getModemOscOffset() const
|
|
|
|
{
|
|
|
|
return m_modemOscOffset;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
bool CConf::getModemDebug() const
|
|
|
|
{
|
|
|
|
return m_modemDebug;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CConf::getDStarEnabled() const
|
|
|
|
{
|
|
|
|
return m_dstarEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getDStarModule() const
|
|
|
|
{
|
|
|
|
return m_dstarModule;
|
|
|
|
}
|
|
|
|
|
2016-04-04 16:40:05 +00:00
|
|
|
bool CConf::getDStarSelfOnly() const
|
|
|
|
{
|
|
|
|
return m_dstarSelfOnly;
|
|
|
|
}
|
|
|
|
|
2016-04-06 17:46:05 +00:00
|
|
|
std::vector<std::string> CConf::getDStarBlackList() const
|
|
|
|
{
|
|
|
|
return m_dstarBlackList;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
bool CConf::getDMREnabled() const
|
|
|
|
{
|
|
|
|
return m_dmrEnabled;
|
|
|
|
}
|
|
|
|
|
2016-01-14 19:58:16 +00:00
|
|
|
bool CConf::getDMRBeacons() const
|
|
|
|
{
|
|
|
|
return m_dmrBeacons;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
unsigned int CConf::getDMRId() const
|
|
|
|
{
|
|
|
|
return m_dmrId;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getDMRColorCode() const
|
|
|
|
{
|
|
|
|
return m_dmrColorCode;
|
|
|
|
}
|
|
|
|
|
2016-04-04 16:40:05 +00:00
|
|
|
bool CConf::getDMRSelfOnly() const
|
|
|
|
{
|
|
|
|
return m_dmrSelfOnly;
|
|
|
|
}
|
|
|
|
|
2016-04-04 18:03:38 +00:00
|
|
|
std::vector<unsigned int> CConf::getDMRPrefixes() const
|
|
|
|
{
|
|
|
|
return m_dmrPrefixes;
|
|
|
|
}
|
|
|
|
|
2016-04-06 17:46:05 +00:00
|
|
|
std::vector<unsigned int> CConf::getDMRBlackList() const
|
|
|
|
{
|
|
|
|
return m_dmrBlackList;
|
|
|
|
}
|
|
|
|
|
2016-04-12 17:26:13 +00:00
|
|
|
std::string CConf::getDMRLookupFile() const
|
|
|
|
{
|
|
|
|
return m_dmrLookupFile;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
bool CConf::getFusionEnabled() const
|
|
|
|
{
|
|
|
|
return m_fusionEnabled;
|
|
|
|
}
|
|
|
|
|
2016-02-22 21:13:48 +00:00
|
|
|
bool CConf::getFusionParrotEnabled() const
|
|
|
|
{
|
|
|
|
return m_fusionParrotEnabled;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
bool CConf::getDStarNetworkEnabled() const
|
|
|
|
{
|
|
|
|
return m_dstarNetworkEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getDStarGatewayAddress() const
|
|
|
|
{
|
|
|
|
return m_dstarGatewayAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getDStarGatewayPort() const
|
|
|
|
{
|
|
|
|
return m_dstarGatewayPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getDStarLocalPort() const
|
|
|
|
{
|
|
|
|
return m_dstarLocalPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CConf::getDStarNetworkDebug() const
|
|
|
|
{
|
|
|
|
return m_dstarNetworkDebug;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CConf::getDMRNetworkEnabled() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getDMRNetworkAddress() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getDMRNetworkPort() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkPort;
|
|
|
|
}
|
|
|
|
|
2016-04-03 18:11:45 +00:00
|
|
|
unsigned int CConf::getDMRNetworkLocal() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkLocal;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
std::string CConf::getDMRNetworkPassword() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkPassword;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CConf::getDMRNetworkDebug() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkDebug;
|
|
|
|
}
|
|
|
|
|
2016-02-15 20:36:05 +00:00
|
|
|
bool CConf::getDMRNetworkSlot1() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkSlot1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CConf::getDMRNetworkSlot2() const
|
|
|
|
{
|
|
|
|
return m_dmrNetworkSlot2;
|
|
|
|
}
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
bool CConf::getFusionNetworkEnabled() const
|
|
|
|
{
|
|
|
|
return m_fusionNetworkEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getFusionNetworkAddress() const
|
|
|
|
{
|
|
|
|
return m_fusionNetworkAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getFusionNetworkPort() const
|
|
|
|
{
|
|
|
|
return m_fusionNetworkPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CConf::getFusionNetworkDebug() const
|
|
|
|
{
|
|
|
|
return m_fusionNetworkDebug;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CConf::getTFTSerialPort() const
|
|
|
|
{
|
|
|
|
return m_tftSerialPort;
|
|
|
|
}
|
2016-02-16 18:30:12 +00:00
|
|
|
|
|
|
|
unsigned int CConf::getTFTSerialBrightness() const
|
|
|
|
{
|
|
|
|
return m_tftSerialBrightness;
|
|
|
|
}
|
2016-03-14 22:58:09 +00:00
|
|
|
|
|
|
|
unsigned int CConf::getHD44780Rows() const
|
|
|
|
{
|
|
|
|
return m_hd44780Rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getHD44780Columns() const
|
|
|
|
{
|
|
|
|
return m_hd44780Columns;
|
|
|
|
}
|
2016-04-06 16:43:20 +00:00
|
|
|
|
|
|
|
std::vector<unsigned int> CConf::getHD44780Pins() const
|
|
|
|
{
|
|
|
|
return m_hd44780Pins;
|
|
|
|
}
|
2016-04-06 18:53:25 +00:00
|
|
|
|
|
|
|
std::string CConf::getNextionPort() const
|
|
|
|
{
|
|
|
|
return m_nextionPort;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int CConf::getNextionBrightness() const
|
|
|
|
{
|
|
|
|
return m_nextionBrightness;
|
|
|
|
}
|