2016-01-14 18:45:04 +00:00
|
|
|
/*
|
2019-01-10 09:05:15 +00:00
|
|
|
* Copyright (C) 2015-2019 by Jonathan Naylor G4KLX
|
2016-01-14 18:45:04 +00: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(DMRControl_H)
|
|
|
|
#define DMRControl_H
|
|
|
|
|
2016-12-21 19:58:46 +00:00
|
|
|
#include "RSSIInterpolator.h"
|
2016-09-14 06:41:37 +00:00
|
|
|
#include "DMRNetwork.h"
|
2016-04-12 17:26:13 +00:00
|
|
|
#include "DMRLookup.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
#include "Display.h"
|
|
|
|
#include "DMRSlot.h"
|
|
|
|
#include "DMRData.h"
|
|
|
|
#include "Modem.h"
|
|
|
|
|
2016-04-04 18:03:38 +00:00
|
|
|
#include <vector>
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
class CDMRControl {
|
|
|
|
public:
|
2019-11-17 02:57:58 +00:00
|
|
|
CDMRControl(unsigned int id, unsigned int colorCode, unsigned int callHang, bool selfOnly, bool embeddedLCOnly, bool dumpTAData, const std::vector<unsigned int>& prefixes, const std::vector<unsigned int>& blacklist, const std::vector<unsigned int>& whitelist, const std::vector<unsigned int>& slot1TGWhitelist, const std::vector<unsigned int>& slot2TGWhitelist, unsigned int timeout, CModem* modem, CDMRNetwork* network, CDisplay* display, bool duplex, CDMRLookup* lookup, CRSSIInterpolator* rssi, unsigned int jitter, DMR_OVCM_TYPES ovcm);
|
2016-01-14 18:45:04 +00:00
|
|
|
~CDMRControl();
|
|
|
|
|
|
|
|
bool processWakeup(const unsigned char* data);
|
|
|
|
|
2017-03-12 19:06:47 +00:00
|
|
|
bool writeModemSlot1(unsigned char* data, unsigned int len);
|
|
|
|
bool writeModemSlot2(unsigned char* data, unsigned int len);
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
unsigned int readModemSlot1(unsigned char* data);
|
|
|
|
unsigned int readModemSlot2(unsigned char* data);
|
|
|
|
|
2016-03-14 20:55:15 +00:00
|
|
|
void clock();
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2019-01-10 09:05:15 +00:00
|
|
|
bool isBusy() const;
|
|
|
|
|
2019-01-19 17:15:24 +00:00
|
|
|
void enable(bool enabled);
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
private:
|
2016-11-10 18:43:54 +00:00
|
|
|
unsigned int m_colorCode;
|
|
|
|
CModem* m_modem;
|
|
|
|
CDMRNetwork* m_network;
|
|
|
|
CDMRSlot m_slot1;
|
|
|
|
CDMRSlot m_slot2;
|
|
|
|
CDMRLookup* m_lookup;
|
2016-01-14 18:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|