MMDVMHost-Private/MMDVMHost.cpp

878 lines
23 KiB
C++
Raw Normal View History

2016-01-14 19:45:04 +01: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.
*/
#include "MMDVMHost.h"
#include "Log.h"
#include "Version.h"
#include "StopWatch.h"
#include "Defines.h"
#include "DStarControl.h"
2016-01-14 19:45:04 +01:00
#include "DMRControl.h"
#include "TFTSerial.h"
#include "NullDisplay.h"
2016-02-16 08:27:13 +01:00
#include "YSFControl.h"
#include "Nextion.h"
2016-01-14 19:45:04 +01:00
#if defined(HD44780)
#include "HD44780.h"
#endif
2016-05-07 01:03:39 +02:00
#if defined(OLED)
#include "OLED.h"
#endif
2016-01-14 19:45:04 +01:00
#include <cstdio>
2016-04-04 20:03:38 +02:00
#include <vector>
2016-01-14 19:45:04 +01:00
2016-01-14 20:58:16 +01:00
#if !defined(_WIN32) && !defined(_WIN64)
2016-05-05 19:06:05 +02:00
#include <sys/types.h>
2016-01-14 19:45:04 +01:00
#include <unistd.h>
#include <signal.h>
#include <fcntl.h>
#include <pwd.h>
#endif
#if defined(_WIN32) || defined(_WIN64)
const char* DEFAULT_INI_FILE = "MMDVM.ini";
#else
const char* DEFAULT_INI_FILE = "/etc/MMDVM.ini";
2016-01-14 19:45:04 +01:00
#endif
static bool m_killed = false;
static int m_signal = 0;
2016-01-14 19:45:04 +01:00
2016-01-14 20:58:16 +01:00
#if !defined(_WIN32) && !defined(_WIN64)
static void sigHandler(int signum)
2016-01-14 19:45:04 +01:00
{
m_killed = true;
m_signal = signum;
2016-01-14 19:45:04 +01:00
}
#endif
2016-01-23 18:54:23 +01:00
const char* HEADER1 = "This software is for use on amateur radio networks only,";
const char* HEADER2 = "it is to be used for educational purposes only. Its use on";
const char* HEADER3 = "commercial networks is strictly prohibited.";
const char* HEADER4 = "Copyright(C) 2015, 2016 by Jonathan Naylor, G4KLX and others";
2016-01-14 19:45:04 +01:00
int main(int argc, char** argv)
{
const char* iniFile = DEFAULT_INI_FILE;
if (argc > 1)
iniFile = argv[1];
2016-01-14 19:45:04 +01:00
2016-01-14 20:58:16 +01:00
#if !defined(_WIN32) && !defined(_WIN64)
::signal(SIGTERM, sigHandler);
::signal(SIGHUP, sigHandler);
2016-01-14 19:45:04 +01:00
#endif
2016-05-04 07:35:20 +02:00
int ret = 0;
2016-01-14 19:45:04 +01:00
2016-05-04 07:35:20 +02:00
do {
m_signal = 0;
2016-01-14 19:45:04 +01:00
2016-05-04 07:35:20 +02:00
CMMDVMHost* host = new CMMDVMHost(std::string(iniFile));
ret = host->run();
2016-05-04 07:35:20 +02:00
delete host;
if (m_signal == 15)
::LogInfo("Caught SIGTERM, exiting");
if (m_signal == 1)
::LogInfo("Caught SIGHUP, restarting");
} while (m_signal == 1);
2016-01-14 19:45:04 +01:00
::LogFinalise();
2016-05-04 07:35:20 +02:00
return ret;
2016-01-14 19:45:04 +01:00
}
CMMDVMHost::CMMDVMHost(const std::string& confFile) :
m_conf(confFile),
m_modem(NULL),
2016-01-25 22:00:19 +01:00
m_dstarNetwork(NULL),
2016-01-14 19:45:04 +01:00
m_dmrNetwork(NULL),
m_display(NULL),
2016-02-02 19:17:36 +01:00
m_mode(MODE_IDLE),
m_modeTimer(1000U),
m_dmrTXTimer(1000U),
2016-05-09 22:55:44 +02:00
m_cwIdTimer(1000U),
m_duplex(false),
2016-01-14 19:45:04 +01:00
m_dstarEnabled(false),
m_dmrEnabled(false),
2016-05-09 22:55:44 +02:00
m_ysfEnabled(false),
m_callsign()
2016-01-14 19:45:04 +01:00
{
}
CMMDVMHost::~CMMDVMHost()
{
}
int CMMDVMHost::run()
{
bool ret = m_conf.read();
if (!ret) {
::fprintf(stderr, "MMDVMHost: cannot read the .ini file\n");
return 1;
}
2016-03-07 19:42:05 +01:00
ret = ::LogInitialise(m_conf.getLogFilePath(), m_conf.getLogFileRoot(), m_conf.getLogFileLevel(), m_conf.getLogDisplayLevel());
2016-01-14 19:45:04 +01:00
if (!ret) {
::fprintf(stderr, "MMDVMHost: unable to open the log file\n");
return 1;
}
#if !defined(_WIN32) && !defined(_WIN64)
bool m_daemon = m_conf.getDaemon();
if (m_daemon) {
// Create new process
pid_t pid = ::fork();
if (pid == -1) {
::LogWarning("Couldn't fork() , exiting");
return -1;
}
else if (pid != 0)
exit(EXIT_SUCCESS);
// Create new session and process group
if (::setsid() == -1){
::LogWarning("Couldn't setsid(), exiting");
return -1;
}
// Set the working directory to the root directory
if (::chdir("/") == -1){
::LogWarning("Couldn't cd /, exiting");
return -1;
}
::close(STDIN_FILENO);
::close(STDOUT_FILENO);
::close(STDERR_FILENO);
#if !defined(HD44780)
//If we are currently root...
if (getuid() == 0) {
2016-05-05 19:06:05 +02:00
struct passwd* user = ::getpwnam("mmdvm");
if (user == NULL) {
::LogError("Could not get the mmdvm user, exiting");
return -1;
}
uid_t mmdvm_uid = user->pw_uid;
gid_t mmdvm_gid = user->pw_gid;
//Set user and group ID's to mmdvm:mmdvm
if (setgid(mmdvm_gid) != 0) {
::LogWarning("Could not set mmdvm GID, exiting");
return -1;
}
2016-05-05 19:06:05 +02:00
if (setuid(mmdvm_uid) != 0) {
::LogWarning("Could not set mmdvm UID, exiting");
return -1;
}
//Double check it worked (AKA Paranoia)
if (setuid(0) != -1){
::LogWarning("It's possible to regain root - something is wrong!, exiting");
return -1;
}
}
}
#else
::LogWarning("Dropping root permissions in daemon mode is disabled with HD44780 display");
}
#endif
#endif
2016-01-14 19:45:04 +01:00
LogInfo(HEADER1);
LogInfo(HEADER2);
LogInfo(HEADER3);
2016-01-23 18:54:23 +01:00
LogInfo(HEADER4);
2016-01-14 19:45:04 +01:00
LogMessage("MMDVMHost-%s is starting", VERSION);
readParams();
ret = createModem();
if (!ret)
return 1;
createDisplay();
2016-01-25 22:00:19 +01:00
if (m_dstarEnabled && m_conf.getDStarNetworkEnabled()) {
ret = createDStarNetwork();
if (!ret)
return 1;
}
if (m_dmrEnabled && m_conf.getDMRNetworkEnabled()) {
2016-01-14 19:45:04 +01:00
ret = createDMRNetwork();
if (!ret)
return 1;
}
2016-05-09 22:55:44 +02:00
if (m_conf.getCWIdEnabled()) {
unsigned int time = m_conf.getCWIdTime();
LogInfo("CW Id Parameters");
LogInfo(" Time: %u mins", time);
m_cwIdTimer.setTimeout(time * 60U);
}
2016-01-14 20:58:16 +01:00
CTimer dmrBeaconTimer(1000U, 4U);
bool dmrBeaconsEnabled = m_dmrEnabled && m_conf.getDMRBeacons();
2016-01-14 19:45:04 +01:00
CStopWatch stopWatch;
stopWatch.start();
CDStarControl* dstar = NULL;
if (m_dstarEnabled) {
std::string module = m_conf.getDStarModule();
bool selfOnly = m_conf.getDStarSelfOnly();
unsigned int timeout = m_conf.getTimeout();
std::vector<std::string> blackList = m_conf.getDStarBlackList();
LogInfo("D-Star Parameters");
2016-05-09 22:55:44 +02:00
LogInfo(" Callsign: %s", m_callsign.c_str());
LogInfo(" Module: %s", module.c_str());
LogInfo(" Self Only: %s", selfOnly ? "yes" : "no");
if (blackList.size() > 0U)
LogInfo(" Black List: %u", blackList.size());
LogInfo(" Timeout: %us", timeout);
2016-05-09 22:55:44 +02:00
dstar = new CDStarControl(m_callsign, module, selfOnly, blackList, m_dstarNetwork, m_display, timeout, m_duplex);
}
2016-01-14 19:45:04 +01:00
CDMRControl* dmr = NULL;
if (m_dmrEnabled) {
unsigned int id = m_conf.getDMRId();
unsigned int colorCode = m_conf.getDMRColorCode();
bool selfOnly = m_conf.getDMRSelfOnly();
2016-04-04 20:03:38 +02:00
std::vector<unsigned int> prefixes = m_conf.getDMRPrefixes();
std::vector<unsigned int> blackList = m_conf.getDMRBlackList();
2016-01-14 19:45:04 +01:00
unsigned int timeout = m_conf.getTimeout();
std::string lookupFile = m_conf.getDMRLookupFile();
unsigned int txHang = m_conf.getDMRTXHang();
2016-01-14 19:45:04 +01:00
LogInfo("DMR Parameters");
LogInfo(" Id: %u", id);
LogInfo(" Color Code: %u", colorCode);
LogInfo(" Self Only: %s", selfOnly ? "yes" : "no");
2016-04-04 20:03:38 +02:00
LogInfo(" Prefixes: %u", prefixes.size());
if (blackList.size() > 0U)
LogInfo(" Black List: %u", blackList.size());
2016-01-14 19:45:04 +01:00
LogInfo(" Timeout: %us", timeout);
LogInfo(" Lookup File: %s", lookupFile.length() > 0U ? lookupFile.c_str() : "None");
LogInfo(" TX Hang: %us", txHang);
2016-01-14 19:45:04 +01:00
dmr = new CDMRControl(id, colorCode, selfOnly, prefixes, blackList, timeout, m_modem, m_dmrNetwork, m_display, m_duplex, lookupFile);
m_dmrTXTimer.setTimeout(txHang);
2016-01-14 19:45:04 +01:00
}
2016-02-16 08:27:13 +01:00
CYSFControl* ysf = NULL;
if (m_ysfEnabled) {
unsigned int timeout = m_conf.getTimeout();
2016-02-22 22:13:48 +01:00
bool parrot = m_conf.getFusionParrotEnabled();
2016-02-16 08:27:13 +01:00
LogInfo("System Fusion Parameters");
2016-05-09 22:55:44 +02:00
LogInfo(" Callsign: %s", m_callsign.c_str());
2016-02-16 08:27:13 +01:00
LogInfo(" Timeout: %us", timeout);
2016-02-22 22:13:48 +01:00
LogInfo(" Parrot: %s", parrot ? "enabled" : "disabled");
2016-02-16 08:27:13 +01:00
2016-05-09 22:55:44 +02:00
ysf = new CYSFControl(m_callsign, m_display, timeout, m_duplex, parrot);
2016-02-16 08:27:13 +01:00
}
2016-01-14 19:45:04 +01:00
2016-02-02 19:17:36 +01:00
m_modeTimer.setTimeout(m_conf.getModeHang());
2016-01-14 19:45:04 +01:00
2016-02-02 19:17:36 +01:00
setMode(MODE_IDLE);
2016-01-14 19:45:04 +01:00
while (!m_killed) {
2016-03-03 22:45:20 +01:00
bool lockout = m_modem->hasLockout();
if (lockout && m_mode != MODE_LOCKOUT)
setMode(MODE_LOCKOUT);
else if (!lockout && m_mode == MODE_LOCKOUT)
setMode(MODE_IDLE);
2016-03-21 23:47:58 +01:00
bool error = m_modem->hasError();
if (error && m_mode != MODE_ERROR)
setMode(MODE_ERROR);
else if (!error && m_mode == MODE_ERROR)
setMode(MODE_IDLE);
2016-01-14 19:45:04 +01:00
unsigned char data[200U];
unsigned int len;
bool ret;
len = m_modem->readDStarData(data);
if (dstar != NULL && len > 0U) {
2016-02-02 19:17:36 +01:00
if (m_mode == MODE_IDLE) {
bool ret = dstar->writeModem(data);
if (ret)
setMode(MODE_DSTAR);
} else if (m_mode == MODE_DSTAR) {
2016-02-02 09:00:04 +01:00
dstar->writeModem(data);
2016-02-02 19:17:36 +01:00
m_modeTimer.start();
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("D-Star modem data received when in mode %u", m_mode);
2016-01-14 19:45:04 +01:00
}
}
len = m_modem->readDMRData1(data);
if (dmr != NULL && len > 0U) {
2016-02-02 19:17:36 +01:00
if (m_mode == MODE_IDLE) {
if (m_duplex) {
bool ret = dmr->processWakeup(data);
if (ret) {
setMode(MODE_DMR);
dmrBeaconTimer.stop();
}
} else {
2016-02-02 19:17:36 +01:00
setMode(MODE_DMR);
dmr->writeModemSlot1(data);
dmrBeaconTimer.stop();
}
2016-02-02 19:17:36 +01:00
} else if (m_mode == MODE_DMR) {
if (m_duplex && !m_modem->hasTX()) {
bool ret = dmr->processWakeup(data);
if (ret) {
m_modem->writeDMRStart(true);
m_dmrTXTimer.start();
}
} else {
dmr->writeModemSlot1(data);
dmrBeaconTimer.stop();
m_modeTimer.start();
if (m_duplex)
m_dmrTXTimer.start();
}
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("DMR modem data received when in mode %u", m_mode);
2016-01-14 19:45:04 +01:00
}
}
len = m_modem->readDMRData2(data);
if (dmr != NULL && len > 0U) {
2016-02-02 19:17:36 +01:00
if (m_mode == MODE_IDLE) {
if (m_duplex) {
bool ret = dmr->processWakeup(data);
if (ret) {
setMode(MODE_DMR);
dmrBeaconTimer.stop();
}
} else {
2016-02-02 19:17:36 +01:00
setMode(MODE_DMR);
dmr->writeModemSlot2(data);
dmrBeaconTimer.stop();
}
2016-02-02 19:17:36 +01:00
} else if (m_mode == MODE_DMR) {
if (m_duplex && !m_modem->hasTX()) {
bool ret = dmr->processWakeup(data);
if (ret) {
m_modem->writeDMRStart(true);
m_dmrTXTimer.start();
}
} else {
dmr->writeModemSlot2(data);
dmrBeaconTimer.stop();
m_modeTimer.start();
if (m_duplex)
m_dmrTXTimer.start();
}
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("DMR modem data received when in mode %u", m_mode);
2016-01-14 19:45:04 +01:00
}
}
len = m_modem->readYSFData(data);
if (ysf != NULL && len > 0U) {
2016-02-02 19:17:36 +01:00
if (m_mode == MODE_IDLE) {
2016-02-16 08:27:13 +01:00
bool ret = ysf->writeModem(data);
2016-02-02 19:17:36 +01:00
if (ret)
setMode(MODE_YSF);
} else if (m_mode == MODE_YSF) {
2016-02-16 08:27:13 +01:00
ysf->writeModem(data);
2016-02-02 19:17:36 +01:00
m_modeTimer.start();
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("System Fusion modem data received when in mode %u", m_mode);
2016-01-14 19:45:04 +01:00
}
}
2016-02-02 19:17:36 +01:00
if (m_modeTimer.isRunning() && m_modeTimer.hasExpired())
setMode(MODE_IDLE);
2016-01-14 19:45:04 +01:00
if (dstar != NULL) {
2016-01-25 20:59:37 +01:00
ret = m_modem->hasDStarSpace();
2016-01-14 19:45:04 +01:00
if (ret) {
len = dstar->readModem(data);
if (len > 0U) {
if (m_mode == MODE_IDLE)
setMode(MODE_DSTAR);
if (m_mode == MODE_DSTAR) {
m_modem->writeDStarData(data, len);
m_modeTimer.start();
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("D-Star data received when in mode %u", m_mode);
}
2016-01-14 19:45:04 +01:00
}
}
}
if (dmr != NULL) {
ret = m_modem->hasDMRSpace1();
if (ret) {
len = dmr->readModemSlot1(data);
if (len > 0U) {
if (m_mode == MODE_IDLE)
setMode(MODE_DMR);
if (m_mode == MODE_DMR) {
if (m_duplex) {
m_modem->writeDMRStart(true);
m_dmrTXTimer.start();
}
m_modem->writeDMRData1(data, len);
dmrBeaconTimer.stop();
m_modeTimer.start();
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("DMR data received when in mode %u", m_mode);
}
2016-01-14 19:45:04 +01:00
}
}
ret = m_modem->hasDMRSpace2();
if (ret) {
len = dmr->readModemSlot2(data);
if (len > 0U) {
if (m_mode == MODE_IDLE)
setMode(MODE_DMR);
if (m_mode == MODE_DMR) {
if (m_duplex) {
m_modem->writeDMRStart(true);
m_dmrTXTimer.start();
}
m_modem->writeDMRData2(data, len);
dmrBeaconTimer.stop();
m_modeTimer.start();
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("DMR data received when in mode %u", m_mode);
}
2016-01-14 19:45:04 +01:00
}
}
}
if (ysf != NULL) {
2016-01-25 20:59:37 +01:00
ret = m_modem->hasYSFSpace();
2016-01-14 19:45:04 +01:00
if (ret) {
2016-02-16 08:27:13 +01:00
len = ysf->readModem(data);
if (len > 0U) {
if (m_mode == MODE_IDLE)
setMode(MODE_YSF);
if (m_mode == MODE_YSF) {
m_modem->writeYSFData(data, len);
m_modeTimer.start();
} else if (m_mode != MODE_LOCKOUT) {
LogWarning("System Fusion data received when in mode %u", m_mode);
}
2016-01-14 19:45:04 +01:00
}
}
}
2016-01-14 20:58:16 +01:00
if (m_dmrNetwork != NULL) {
bool run = m_dmrNetwork->wantsBeacon();
2016-02-02 19:17:36 +01:00
if (dmrBeaconsEnabled && run && m_mode == MODE_IDLE) {
2016-05-10 19:26:52 +02:00
setMode(MODE_DMR);
2016-01-14 20:58:16 +01:00
dmrBeaconTimer.start();
}
}
2016-01-14 19:45:04 +01:00
unsigned int ms = stopWatch.elapsed();
stopWatch.start();
m_display->clock(ms);
2016-01-14 19:45:04 +01:00
m_modem->clock(ms);
2016-02-02 19:17:36 +01:00
m_modeTimer.clock(ms);
2016-01-14 19:45:04 +01:00
if (dstar != NULL)
dstar->clock();
2016-01-14 19:45:04 +01:00
if (dmr != NULL)
dmr->clock();
2016-01-14 19:45:04 +01:00
if (ysf != NULL)
ysf->clock();
2016-01-26 20:56:10 +01:00
if (m_dstarNetwork != NULL)
m_dstarNetwork->clock(ms);
if (m_dmrNetwork != NULL)
m_dmrNetwork->clock(ms);
2016-01-14 19:45:04 +01:00
2016-05-09 22:55:44 +02:00
m_cwIdTimer.clock(ms);
if (m_cwIdTimer.isRunning() && m_cwIdTimer.hasExpired()) {
m_modem->sendCWId(m_callsign);
m_cwIdTimer.start();
}
2016-01-14 20:58:16 +01:00
dmrBeaconTimer.clock(ms);
if (dmrBeaconTimer.isRunning() && dmrBeaconTimer.hasExpired()) {
2016-05-10 19:26:52 +02:00
setMode(MODE_IDLE);
2016-01-14 20:58:16 +01:00
dmrBeaconTimer.stop();
}
m_dmrTXTimer.clock(ms);
if (m_dmrTXTimer.isRunning() && m_dmrTXTimer.hasExpired()) {
m_modem->writeDMRStart(false);
m_dmrTXTimer.stop();
}
2016-01-14 19:45:04 +01:00
if (ms < 5U) {
2016-01-14 20:58:16 +01:00
#if defined(_WIN32) || defined(_WIN64)
2016-01-14 19:45:04 +01:00
::Sleep(5UL); // 5ms
#else
::usleep(5000); // 5ms
#endif
}
}
LogMessage("MMDVMHost is exiting on receipt of SIGHUP1");
2016-02-02 19:17:36 +01:00
setMode(MODE_IDLE);
2016-01-14 19:45:04 +01:00
m_modem->close();
delete m_modem;
m_display->close();
delete m_display;
2016-01-25 22:00:19 +01:00
if (m_dstarNetwork != NULL) {
m_dstarNetwork->close();
delete m_dstarNetwork;
}
2016-01-14 19:45:04 +01:00
if (m_dmrNetwork != NULL) {
m_dmrNetwork->close();
delete m_dmrNetwork;
}
delete dstar;
delete dmr;
delete ysf;
return 0;
}
bool CMMDVMHost::createModem()
{
std::string port = m_conf.getModemPort();
bool rxInvert = m_conf.getModemRXInvert();
bool txInvert = m_conf.getModemTXInvert();
bool pttInvert = m_conf.getModemPTTInvert();
unsigned int txDelay = m_conf.getModemTXDelay();
2016-03-17 19:12:14 +01:00
unsigned int dmrDelay = m_conf.getModemDMRDelay();
unsigned int rxLevel = m_conf.getModemRXLevel();
unsigned int txLevel = m_conf.getModemTXLevel();
bool debug = m_conf.getModemDebug();
unsigned int colorCode = m_conf.getDMRColorCode();
unsigned int rxFrequency = m_conf.getRxFrequency();
unsigned int txFrequency = m_conf.getTxFrequency();
int oscOffset = m_conf.getModemOscOffset();
2016-01-14 19:45:04 +01:00
LogInfo("Modem Parameters");
LogInfo(" Port: %s", port.c_str());
LogInfo(" RX Invert: %s", rxInvert ? "yes" : "no");
LogInfo(" TX Invert: %s", txInvert ? "yes" : "no");
LogInfo(" PTT Invert: %s", pttInvert ? "yes" : "no");
2016-03-17 19:12:14 +01:00
LogInfo(" TX Delay: %ums", txDelay);
LogInfo(" DMR Delay: %u (%.1fms)", dmrDelay, float(dmrDelay) * 0.0416666F);
2016-03-17 19:12:14 +01:00
LogInfo(" RX Level: %u%%", rxLevel);
LogInfo(" TX Level: %u%%", txLevel);
LogInfo(" RX Frequency: %uHz", rxFrequency);
LogInfo(" TX Frequency: %uHz", txFrequency);
LogInfo(" Osc. Offset: %dppm", oscOffset);
2016-01-14 19:45:04 +01:00
m_modem = new CModem(port, rxInvert, txInvert, pttInvert, txDelay, rxLevel, txLevel, dmrDelay, oscOffset, debug);
2016-01-14 19:45:04 +01:00
m_modem->setModeParams(m_dstarEnabled, m_dmrEnabled, m_ysfEnabled);
m_modem->setRFParams(rxFrequency, txFrequency);
2016-01-14 19:45:04 +01:00
m_modem->setDMRParams(colorCode);
bool ret = m_modem->open();
if (!ret) {
delete m_modem;
m_modem = NULL;
return false;
}
return true;
}
2016-01-25 22:00:19 +01:00
bool CMMDVMHost::createDStarNetwork()
{
std::string gatewayAddress = m_conf.getDStarGatewayAddress();
unsigned int gatewayPort = m_conf.getDStarGatewayPort();
unsigned int localPort = m_conf.getDStarLocalPort();
bool debug = m_conf.getDStarNetworkDebug();
LogInfo("D-Star Network Parameters");
LogInfo(" Gateway Address: %s", gatewayAddress.c_str());
LogInfo(" Gateway Port: %u", gatewayPort);
LogInfo(" Local Port: %u", localPort);
2016-03-08 18:26:51 +01:00
m_dstarNetwork = new CDStarNetwork(gatewayAddress, gatewayPort, localPort, m_duplex, VERSION, debug);
2016-01-25 22:00:19 +01:00
bool ret = m_dstarNetwork->open();
if (!ret) {
delete m_dstarNetwork;
m_dstarNetwork = NULL;
return false;
}
m_dstarNetwork->enable(true);
return true;
}
2016-01-14 19:45:04 +01:00
bool CMMDVMHost::createDMRNetwork()
{
std::string address = m_conf.getDMRNetworkAddress();
unsigned int port = m_conf.getDMRNetworkPort();
unsigned int local = m_conf.getDMRNetworkLocal();
2016-01-14 19:45:04 +01:00
unsigned int id = m_conf.getDMRId();
std::string password = m_conf.getDMRNetworkPassword();
bool debug = m_conf.getDMRNetworkDebug();
bool slot1 = m_conf.getDMRNetworkSlot1();
bool slot2 = m_conf.getDMRNetworkSlot2();
2016-01-14 19:45:04 +01:00
LogInfo("DMR Network Parameters");
LogInfo(" Address: %s", address.c_str());
LogInfo(" Port: %u", port);
if (local > 0U)
LogInfo(" Local: %u", local);
else
LogInfo(" Local: random");
LogInfo(" Slot 1: %s", slot1 ? "enabled" : "disabled");
LogInfo(" Slot 2: %s", slot2 ? "enabled" : "disabled");
2016-01-14 19:45:04 +01:00
m_dmrNetwork = new CDMRIPSC(address, port, local, id, password, m_duplex, VERSION, debug, slot1, slot2);
2016-01-14 19:45:04 +01:00
unsigned int rxFrequency = m_conf.getRxFrequency();
unsigned int txFrequency = m_conf.getTxFrequency();
unsigned int power = m_conf.getPower();
unsigned int colorCode = m_conf.getDMRColorCode();
float latitude = m_conf.getLatitude();
float longitude = m_conf.getLongitude();
int height = m_conf.getHeight();
std::string location = m_conf.getLocation();
std::string description = m_conf.getDescription();
std::string url = m_conf.getURL();
LogInfo("Info Parameters");
2016-05-09 22:55:44 +02:00
LogInfo(" Callsign: %s", m_callsign.c_str());
2016-01-14 19:45:04 +01:00
LogInfo(" RX Frequency: %uHz", rxFrequency);
LogInfo(" TX Frequency: %uHz", txFrequency);
LogInfo(" Power: %uW", power);
LogInfo(" Latitude: %fdeg N", latitude);
LogInfo(" Longitude: %fdeg E", longitude);
LogInfo(" Height: %um", height);
LogInfo(" Location: \"%s\"", location.c_str());
LogInfo(" Description: \"%s\"", description.c_str());
LogInfo(" URL: \"%s\"", url.c_str());
2016-05-09 22:55:44 +02:00
m_dmrNetwork->setConfig(m_callsign, rxFrequency, txFrequency, power, colorCode, latitude, longitude, height, location, description, url);
2016-01-14 19:45:04 +01:00
bool ret = m_dmrNetwork->open();
if (!ret) {
delete m_dmrNetwork;
m_dmrNetwork = NULL;
return false;
}
m_dmrNetwork->enable(true);
2016-01-14 19:45:04 +01:00
return true;
}
void CMMDVMHost::readParams()
{
m_dstarEnabled = m_conf.getDStarEnabled();
m_dmrEnabled = m_conf.getDMREnabled();
m_ysfEnabled = m_conf.getFusionEnabled();
m_duplex = m_conf.getDuplex();
2016-05-09 22:55:44 +02:00
m_callsign = m_conf.getCallsign();
2016-01-14 19:45:04 +01:00
}
void CMMDVMHost::createDisplay()
{
2016-05-09 22:55:44 +02:00
std::string type = m_conf.getDisplay();
unsigned int dmrid = m_conf.getDMRId();
2016-05-01 17:59:43 +02:00
2016-01-14 19:45:04 +01:00
LogInfo("Display Parameters");
LogInfo(" Type: %s", type.c_str());
if (type == "TFT Serial") {
std::string port = m_conf.getTFTSerialPort();
unsigned int brightness = m_conf.getTFTSerialBrightness();
2016-01-14 19:45:04 +01:00
LogInfo(" Port: %s", port.c_str());
2016-03-01 07:32:02 +01:00
LogInfo(" Brightness: %u", brightness);
2016-01-14 19:45:04 +01:00
2016-05-09 22:55:44 +02:00
m_display = new CTFTSerial(m_callsign, dmrid, port, brightness);
} else if (type == "Nextion") {
std::string size = m_conf.getNextionSize();
std::string port = m_conf.getNextionPort();
unsigned int brightness = m_conf.getNextionBrightness();
2016-04-27 21:19:40 +02:00
LogInfo(" Size: %s\"", size.c_str());
LogInfo(" Port: %s", port.c_str());
LogInfo(" Brightness: %u", brightness);
2016-05-09 22:55:44 +02:00
m_display = new CNextion(m_callsign, dmrid, size, port, brightness);
#if defined(HD44780)
} else if (type == "HD44780") {
unsigned int rows = m_conf.getHD44780Rows();
unsigned int columns = m_conf.getHD44780Columns();
std::vector<unsigned int> pins = m_conf.getHD44780Pins();
2016-05-03 18:59:21 +02:00
bool pwm = m_conf.getHD44780PWM();
unsigned int pwmPin = m_conf.getHD44780PWMPin();
unsigned int pwmBright = m_conf.getHD44780PWMBright();
unsigned int pwmDim = m_conf.getHD44780PWMDim();
if (pins.size() == 6U) {
LogInfo(" Rows: %u", rows);
LogInfo(" Columns: %u", columns);
LogInfo(" Pins: %u,%u,%u,%u,%u,%u", pins.at(0U), pins.at(1U), pins.at(2U), pins.at(3U), pins.at(4U), pins.at(5U));
2016-05-03 18:59:21 +02:00
if (pwm) {
2016-05-01 17:59:43 +02:00
LogInfo("PWM Brightness Control Enabled");
2016-05-03 18:59:21 +02:00
LogInfo(" PWM Pin: %u", pwmPin);
LogInfo(" PWM Bright: %u", pwmBright);
LogInfo(" PWM Dim: %u", pwmDim);
2016-05-01 17:59:43 +02:00
}
2016-05-09 22:55:44 +02:00
m_display = new CHD44780(rows, columns, m_callsign, dmrid, pins, pwm, pwmPin, pwmBright, pwmDim, m_duplex);
}
2016-05-07 01:03:39 +02:00
#endif
#if defined(OLED)
} else if (type == "OLED") {
unsigned char displayType = m_conf.getOLEDType();
unsigned char displayBrightness = m_conf.getOLEDBrightness();
unsigned char displayInvert = m_conf.getOLEDInvert();
m_display = new COLED(displayType, displayBrightness, displayInvert);
#endif
2016-01-14 19:45:04 +01:00
} else {
m_display = new CNullDisplay;
}
bool ret = m_display->open();
if (!ret) {
delete m_display;
m_display = new CNullDisplay;
}
}
2016-02-02 19:17:36 +01:00
2016-05-10 19:26:52 +02:00
void CMMDVMHost::setMode(unsigned char mode)
2016-02-02 19:17:36 +01:00
{
assert(m_modem != NULL);
assert(m_display != NULL);
switch (mode) {
case MODE_DSTAR:
if (m_dmrNetwork != NULL)
m_dmrNetwork->enable(false);
m_modem->setMode(MODE_DSTAR);
m_mode = MODE_DSTAR;
m_modeTimer.start();
2016-05-09 22:55:44 +02:00
m_cwIdTimer.stop();
2016-02-02 19:17:36 +01:00
break;
case MODE_DMR:
if (m_dstarNetwork != NULL)
m_dstarNetwork->enable(false);
2016-03-29 18:59:15 +02:00
m_modem->setMode(MODE_DMR);
if (m_duplex) {
2016-03-25 21:54:51 +01:00
m_modem->writeDMRStart(true);
m_dmrTXTimer.start();
}
2016-02-02 19:17:36 +01:00
m_mode = MODE_DMR;
m_modeTimer.start();
2016-05-09 22:55:44 +02:00
m_cwIdTimer.stop();
2016-02-02 19:17:36 +01:00
break;
case MODE_YSF:
if (m_dstarNetwork != NULL)
m_dstarNetwork->enable(false);
if (m_dmrNetwork != NULL)
m_dmrNetwork->enable(false);
m_modem->setMode(MODE_YSF);
m_mode = MODE_YSF;
m_modeTimer.start();
2016-05-09 22:55:44 +02:00
m_cwIdTimer.stop();
2016-02-02 19:17:36 +01:00
break;
2016-03-03 19:01:01 +01:00
case MODE_LOCKOUT:
2016-05-10 19:26:52 +02:00
LogMessage("Mode set to Lockout");
2016-03-03 19:01:01 +01:00
if (m_dstarNetwork != NULL)
m_dstarNetwork->enable(false);
if (m_dmrNetwork != NULL)
m_dmrNetwork->enable(false);
if (m_mode == MODE_DMR && m_duplex && m_modem->hasTX()) {
2016-03-03 19:01:01 +01:00
m_modem->writeDMRStart(false);
m_dmrTXTimer.stop();
}
2016-03-29 18:59:15 +02:00
m_modem->setMode(MODE_IDLE);
2016-03-03 19:01:01 +01:00
m_display->setLockout();
m_mode = MODE_LOCKOUT;
m_modeTimer.stop();
2016-05-09 22:55:44 +02:00
m_cwIdTimer.stop();
2016-03-03 19:01:01 +01:00
break;
2016-03-21 23:47:58 +01:00
case MODE_ERROR:
2016-05-10 19:26:52 +02:00
LogMessage("Mode set to Error");
2016-03-21 23:47:58 +01:00
if (m_dstarNetwork != NULL)
m_dstarNetwork->enable(false);
if (m_dmrNetwork != NULL)
m_dmrNetwork->enable(false);
if (m_mode == MODE_DMR && m_duplex && m_modem->hasTX()) {
m_modem->writeDMRStart(false);
m_dmrTXTimer.stop();
}
2016-03-21 23:47:58 +01:00
m_display->setError("MODEM");
m_mode = MODE_ERROR;
m_modeTimer.stop();
2016-05-09 22:55:44 +02:00
m_cwIdTimer.stop();
2016-03-21 23:47:58 +01:00
break;
2016-02-02 19:17:36 +01:00
default:
if (m_dstarNetwork != NULL)
m_dstarNetwork->enable(true);
if (m_dmrNetwork != NULL)
m_dmrNetwork->enable(true);
if (m_mode == MODE_DMR && m_duplex && m_modem->hasTX()) {
2016-02-02 19:17:36 +01:00
m_modem->writeDMRStart(false);
m_dmrTXTimer.stop();
}
2016-03-29 18:59:15 +02:00
m_modem->setMode(MODE_IDLE);
2016-02-02 19:17:36 +01:00
m_display->setIdle();
m_mode = MODE_IDLE;
m_modeTimer.stop();
2016-05-09 22:55:44 +02:00
m_cwIdTimer.start();
2016-02-02 19:17:36 +01:00
break;
}
}