MMDVMHost-Private/DMRControl.h

61 lines
2.1 KiB
C
Raw Normal View History

2016-01-14 19:45:04 +01:00
/*
2021-02-17 22:36:47 +01:00
* Copyright (C) 2015-2021 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(DMRControl_H)
#define DMRControl_H
#include "RSSIInterpolator.h"
#include "DMRNetwork.h"
#include "DMRLookup.h"
2016-01-14 19:45:04 +01:00
#include "Display.h"
#include "DMRSlot.h"
#include "DMRData.h"
#include "Modem.h"
2016-04-04 20:03:38 +02:00
#include <vector>
2016-01-14 19:45:04 +01:00
class CDMRControl {
public:
2021-02-17 22:36:47 +01: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, IDMRNetwork* network, CDisplay* display, bool duplex, CDMRLookup* lookup, CRSSIInterpolator* rssi, unsigned int jitter, DMR_OVCM_TYPES ovcm);
2016-01-14 19:45:04 +01:00
~CDMRControl();
bool processWakeup(const unsigned char* data);
2017-03-12 20:06:47 +01:00
bool writeModemSlot1(unsigned char* data, unsigned int len);
bool writeModemSlot2(unsigned char* data, unsigned int len);
2016-01-14 19:45:04 +01:00
unsigned int readModemSlot1(unsigned char* data);
unsigned int readModemSlot2(unsigned char* data);
void clock();
2016-01-14 19:45:04 +01:00
bool isBusy() const;
void enable(bool enabled);
2016-01-14 19:45:04 +01:00
private:
2016-11-10 19:43:54 +01:00
unsigned int m_colorCode;
2021-02-17 22:36:47 +01:00
CModem* m_modem;
IDMRNetwork* m_network;
2016-11-10 19:43:54 +01:00
CDMRSlot m_slot1;
CDMRSlot m_slot2;
CDMRLookup* m_lookup;
2016-01-14 19:45:04 +01:00
};
#endif