59 lines
2.6 KiB
C++
59 lines
2.6 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#if !defined(DMRControl_H)
|
|
#define DMRControl_H
|
|
|
|
#include "DMRLookup.h"
|
|
#include "DMRIPSC.h"
|
|
#include "Display.h"
|
|
#include "DMRSlot.h"
|
|
#include "DMRData.h"
|
|
#include "Modem.h"
|
|
|
|
#include <vector>
|
|
|
|
class CDMRControl {
|
|
public:
|
|
CDMRControl(unsigned int id, unsigned int colorCode, unsigned int callHang, bool selfOnly, const std::vector<unsigned int>& prefixes, const std::vector<unsigned int>& blackList, const std::vector<unsigned int>& DstIdBlacklistSlot1RF, const std::vector<unsigned int>& DstIdWhitelistSlot1RF, const std::vector<unsigned int>& DstIdBlacklistSlot2RF, const std::vector<unsigned int>& DstIdWhitelistSlot2RF,const std::vector<unsigned int>& DstIdBlacklistSlot1NET, const std::vector<unsigned int>& DstIdWhitelistSlot1NET, const std::vector<unsigned int>& DstIdBlacklistSlot2NET, const std::vector<unsigned int>& DstIdWhitelistSlot2NET, unsigned int timeout, CModem* modem, CDMRIPSC* network, CDisplay* display, bool duplex, const std::string& lookupFile, int rssiMultiplier, int rssiOffset, unsigned int jitter, bool TGRewriteSlot1, bool TGRewriteSlot2, bool BMAutoRewrite, bool BMRewriteReflectorVoicePrompts);
|
|
~CDMRControl();
|
|
|
|
bool processWakeup(const unsigned char* data);
|
|
|
|
void writeModemSlot1(unsigned char* data, unsigned int len);
|
|
void writeModemSlot2(unsigned char* data, unsigned int len);
|
|
|
|
unsigned int readModemSlot1(unsigned char* data);
|
|
unsigned int readModemSlot2(unsigned char* data);
|
|
|
|
void clock();
|
|
|
|
private:
|
|
unsigned int m_id;
|
|
unsigned int m_colorCode;
|
|
bool m_selfOnly;
|
|
std::vector<unsigned int> m_prefixes;
|
|
std::vector<unsigned int> m_blackList;
|
|
CModem* m_modem;
|
|
CDMRIPSC* m_network;
|
|
CDMRSlot m_slot1;
|
|
CDMRSlot m_slot2;
|
|
CDMRLookup* m_lookup;
|
|
};
|
|
|
|
#endif
|