MMDVMHost-Private/DMRSlot.h

135 lines
4.3 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
#include "RSSIInterpolator.h"
2016-02-15 19:45:57 +01:00
#include "DMREmbeddedLC.h"
#include "DMRDataHeader.h"
#include "DMRNetwork.h"
2016-01-14 19:45:04 +01:00
#include "RingBuffer.h"
#include "StopWatch.h"
#include "DMRLookup.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 "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
2016-04-04 20:03:38 +02:00
#include <vector>
2016-01-14 19:45:04 +01:00
class CDMRSlot {
public:
CDMRSlot(unsigned int slotNo, unsigned int timeout);
~CDMRSlot();
2016-08-08 22:26:18 +02:00
void writeModem(unsigned char* data, unsigned int len);
2016-01-14 19:45:04 +01:00
unsigned int readModem(unsigned char* data);
void writeNetwork(const CDMRData& data);
void clock();
2016-01-14 19:45:04 +01:00
static void init(unsigned int colorCode, unsigned int callHang, CModem* modem, CDMRNetwork* network, CDisplay* display, bool duplex, CDMRLookup* lookup, CRSSIInterpolator* rssiMapper, unsigned int jitter);
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_queue;
RPT_RF_STATE m_rfState;
RPT_NET_STATE m_netState;
CDMREmbeddedLC m_rfEmbeddedLC;
CDMRLC* m_rfLC;
CDMRLC* m_netLC;
CDMRDataHeader m_rfDataHeader;
CDMRDataHeader m_netDataHeader;
unsigned char m_rfSeqNo;
unsigned char m_netSeqNo;
unsigned char m_rfN;
2016-03-03 18:08:24 +01:00
unsigned char m_netN;
2016-01-19 18:43:33 +01:00
CTimer m_networkWatchdog;
CTimer m_rfTimeoutTimer;
CTimer m_netTimeoutTimer;
2016-07-15 07:32:56 +02:00
CTimer m_packetTimer;
CStopWatch m_interval;
2016-01-19 20:34:49 +01:00
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-07-21 19:09:29 +02:00
bool m_lastFrameValid;
2016-02-15 19:45:57 +01:00
CDMREMB m_lastEMB;
unsigned char m_rssi;
2016-01-19 18:43:33 +01:00
FILE* m_fp;
2016-01-14 19:45:04 +01:00
static unsigned int m_colorCode;
2016-07-21 19:09:29 +02:00
2016-01-14 19:45:04 +01:00
static CModem* m_modem;
static CDMRNetwork* m_network;
static CDisplay* m_display;
static bool m_duplex;
static CDMRLookup* m_lookup;
static unsigned int m_hangCount;
2016-01-14 19:45:04 +01:00
static CRSSIInterpolator* m_rssiMapper;
2016-08-08 22:26:18 +02:00
2016-09-06 20:42:15 +02:00
static unsigned int m_jitterTime;
static unsigned int m_jitterSlots;
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, unsigned char errors = 0U);
void writeNetworkRF(const unsigned char* data, unsigned char dataType, FLCO flco, unsigned int srcId, unsigned int dstId, unsigned char errors = 0U);
2016-01-14 19:45:04 +01:00
void endOfRFData();
void endOfNetData();
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-07-21 18:46:37 +02:00
bool 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