MMDVMHost-Private/MMDVMHost.h

72 lines
1.8 KiB
C
Raw Normal View History

2016-01-14 19:45:04 +01:00
/*
* Copyright (C) 2015,2016 by Jonathan Naylor G4KLX
2016-01-14 19:45:04 +01:00
*
* 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.
*/
#if !defined(MMDVMHOST_H)
#define MMDVMHOST_H
2016-01-25 22:00:19 +01:00
#include "DStarNetwork.h"
2016-05-16 22:57:32 +02:00
#include "YSFNetwork.h"
2016-02-15 19:45:57 +01:00
#include "DMRIPSC.h"
2016-01-14 19:45:04 +01:00
#include "Display.h"
2016-02-02 19:17:36 +01:00
#include "Timer.h"
2016-01-14 19:45:04 +01:00
#include "Modem.h"
#include "Conf.h"
#include <string>
class CMMDVMHost
{
public:
CMMDVMHost(const std::string& confFile);
~CMMDVMHost();
int run();
private:
2016-02-15 19:45:57 +01:00
CConf m_conf;
CModem* m_modem;
CDStarNetwork* m_dstarNetwork;
CDMRIPSC* m_dmrNetwork;
2016-05-16 22:57:32 +02:00
CYSFNetwork* m_ysfNetwork;
CDisplay* m_display;
2016-02-15 19:45:57 +01:00
unsigned char m_mode;
unsigned int m_rfModeHang;
unsigned int m_netModeHang;
2016-02-15 19:45:57 +01:00
CTimer m_modeTimer;
CTimer m_dmrTXTimer;
2016-05-09 22:55:44 +02:00
CTimer m_cwIdTimer;
bool m_duplex;
unsigned int m_timeout;
2016-02-15 19:45:57 +01:00
bool m_dstarEnabled;
bool m_dmrEnabled;
bool m_ysfEnabled;
2016-09-08 19:38:59 +02:00
bool m_p25Enabled;
2016-05-09 22:55:44 +02:00
std::string m_callsign;
2016-01-14 19:45:04 +01:00
void readParams();
bool createModem();
2016-01-25 22:00:19 +01:00
bool createDStarNetwork();
2016-01-14 19:45:04 +01:00
bool createDMRNetwork();
2016-05-16 22:57:32 +02:00
bool createYSFNetwork();
2016-01-14 19:45:04 +01:00
void createDisplay();
2016-02-02 19:17:36 +01:00
2016-05-10 19:26:52 +02:00
void setMode(unsigned char mode);
2016-01-14 19:45:04 +01:00
};
#endif