MMDVMHost-Private/DMRSlot.h

118 lines
3.8 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.
*/
#if !defined(DMRSlot_H)
#define DMRSlot_H
2016-02-15 19:45:57 +01:00
#include "DMREmbeddedLC.h"
#include "DMRDataHeader.h"
2016-01-14 19:45:04 +01:00
#include "RingBuffer.h"
#include "StopWatch.h"
2016-01-19 21:13:20 +01:00
#include "AMBEFEC.h"
2016-01-14 19:45:04 +01:00
#include "DMRSlot.h"
#include "DMRData.h"
#include "Display.h"
2016-01-19 18:43:33 +01:00
#include "Defines.h"
2016-02-15 19:45:57 +01:00
#include "DMRIPSC.h"
#include "DMREMB.h"
2016-01-14 19:45:04 +01:00
#include "Timer.h"
#include "Modem.h"
2016-02-15 19:45:57 +01:00
#include "DMRLC.h"
2016-01-14 19:45:04 +01:00
class CDMRSlot {
public:
CDMRSlot(unsigned int slotNo, unsigned int timeout);
~CDMRSlot();
void writeModem(unsigned char* data);
unsigned int readModem(unsigned char* data);
void writeNetwork(const CDMRData& data);
void clock(unsigned int ms);
2016-02-15 19:45:57 +01:00
static void init(unsigned int colorCode, CModem* modem, CDMRIPSC* network, IDisplay* display, bool duplex);
2016-01-14 19:45:04 +01:00
private:
2016-01-19 18:43:33 +01:00
unsigned int m_slotNo;
CRingBuffer<unsigned char> m_rfQueue;
RPT_RF_STATE m_rfState;
RPT_NET_STATE m_netState;
CDMREmbeddedLC m_rfEmbeddedLC;
2016-02-29 08:27:10 +01:00
CDMREmbeddedLC m_netEmbeddedLC;
CDMRLC* m_rfLC;
CDMRLC* m_netLC;
CDMRDataHeader m_rfDataHeader;
CDMRDataHeader m_netDataHeader;
unsigned char m_rfSeqNo;
unsigned char m_netSeqNo;
unsigned char m_netN;
unsigned char m_rfN;
2016-01-19 18:43:33 +01:00
CTimer m_networkWatchdog;
CTimer m_rfTimeoutTimer;
CTimer m_netTimeoutTimer;
2016-01-19 20:34:49 +01:00
CTimer m_packetTimer;
CStopWatch m_elapsed;
unsigned int m_rfFrames;
unsigned int m_netFrames;
unsigned int m_netLost;
2016-01-19 21:13:20 +01:00
CAMBEFEC m_fec;
unsigned int m_rfBits;
unsigned int m_netBits;
unsigned int m_rfErrs;
unsigned int m_netErrs;
unsigned char* m_lastFrame;
2016-02-15 19:45:57 +01:00
CDMREMB m_lastEMB;
2016-01-19 18:43:33 +01:00
FILE* m_fp;
2016-01-14 19:45:04 +01:00
static unsigned int m_colorCode;
static CModem* m_modem;
2016-02-15 19:45:57 +01:00
static CDMRIPSC* m_network;
2016-01-14 19:45:04 +01:00
static IDisplay* m_display;
static bool m_duplex;
2016-01-14 19:45:04 +01:00
static unsigned char* m_idle;
static FLCO m_flco1;
static unsigned char m_id1;
static bool m_voice1;
2016-01-14 19:45:04 +01:00
static FLCO m_flco2;
static unsigned char m_id2;
static bool m_voice2;
2016-01-14 19:45:04 +01:00
void writeQueueRF(const unsigned char* data);
void writeQueueNet(const unsigned char* data);
void writeNetworkRF(const unsigned char* data, unsigned char dataType);
void writeNetworkRF(const unsigned char* data, unsigned char dataType, FLCO flco, unsigned int srcId, unsigned int dstId);
2016-01-14 19:45:04 +01:00
void writeEndRF(bool writeEnd = false);
void writeEndNet(bool writeEnd = false);
2016-01-14 19:45:04 +01:00
bool openFile();
bool writeFile(const unsigned char* data);
void closeFile();
2016-01-27 07:49:16 +01:00
void insertSilence(const unsigned char* data, unsigned char seqNo);
void insertSilence(unsigned int count);
2016-01-19 20:34:49 +01:00
static void setShortLC(unsigned int slotNo, unsigned int id, FLCO flco = FLCO_GROUP, bool voice = true);
2016-01-14 19:45:04 +01:00
};
#endif