2016-01-14 18:45:04 +00: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-12-21 19:58:46 +00:00
|
|
|
#include "RSSIInterpolator.h"
|
2016-02-15 18:45:57 +00:00
|
|
|
#include "DMREmbeddedLC.h"
|
2016-02-28 18:22:17 +00:00
|
|
|
#include "DMRDataHeader.h"
|
2016-09-14 06:41:37 +00:00
|
|
|
#include "DMRNetwork.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
#include "RingBuffer.h"
|
2016-02-28 18:22:17 +00:00
|
|
|
#include "StopWatch.h"
|
2016-04-12 17:26:13 +00:00
|
|
|
#include "DMRLookup.h"
|
2016-01-19 20:13:20 +00:00
|
|
|
#include "AMBEFEC.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
#include "DMRSlot.h"
|
|
|
|
#include "DMRData.h"
|
|
|
|
#include "Display.h"
|
2016-01-19 17:43:33 +00:00
|
|
|
#include "Defines.h"
|
2016-02-15 18:45:57 +00:00
|
|
|
#include "DMREMB.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
#include "Timer.h"
|
|
|
|
#include "Modem.h"
|
2016-02-15 18:45:57 +00:00
|
|
|
#include "DMRLC.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-04-04 18:03:38 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
class CDMRSlot {
|
|
|
|
public:
|
|
|
|
CDMRSlot(unsigned int slotNo, unsigned int timeout);
|
|
|
|
~CDMRSlot();
|
|
|
|
|
2016-08-08 20:26:18 +00:00
|
|
|
void writeModem(unsigned char* data, unsigned int len);
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
unsigned int readModem(unsigned char* data);
|
|
|
|
|
|
|
|
void writeNetwork(const CDMRData& data);
|
|
|
|
|
2016-03-14 20:55:15 +00:00
|
|
|
void clock();
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-12-21 19:58:46 +00: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 18:45:04 +00:00
|
|
|
|
|
|
|
private:
|
2016-01-19 17:43:33 +00:00
|
|
|
unsigned int m_slotNo;
|
2016-03-07 18:08:50 +00:00
|
|
|
CRingBuffer<unsigned char> m_queue;
|
2016-02-25 19:54:18 +00:00
|
|
|
RPT_RF_STATE m_rfState;
|
|
|
|
RPT_NET_STATE m_netState;
|
2016-02-28 17:18:13 +00:00
|
|
|
CDMREmbeddedLC m_rfEmbeddedLC;
|
2016-02-25 19:54:18 +00:00
|
|
|
CDMRLC* m_rfLC;
|
|
|
|
CDMRLC* m_netLC;
|
2016-02-28 18:22:17 +00:00
|
|
|
CDMRDataHeader m_rfDataHeader;
|
|
|
|
CDMRDataHeader m_netDataHeader;
|
2016-02-28 17:40:15 +00:00
|
|
|
unsigned char m_rfSeqNo;
|
2016-02-28 17:18:13 +00:00
|
|
|
unsigned char m_netSeqNo;
|
|
|
|
unsigned char m_rfN;
|
2016-03-03 17:08:24 +00:00
|
|
|
unsigned char m_netN;
|
2016-01-19 17:43:33 +00:00
|
|
|
CTimer m_networkWatchdog;
|
2016-02-25 19:54:18 +00:00
|
|
|
CTimer m_rfTimeoutTimer;
|
|
|
|
CTimer m_netTimeoutTimer;
|
2016-07-15 05:32:56 +00:00
|
|
|
CTimer m_packetTimer;
|
2016-03-14 20:55:15 +00:00
|
|
|
CStopWatch m_interval;
|
2016-01-19 19:34:49 +00:00
|
|
|
CStopWatch m_elapsed;
|
2016-02-25 19:54:18 +00:00
|
|
|
unsigned int m_rfFrames;
|
|
|
|
unsigned int m_netFrames;
|
|
|
|
unsigned int m_netLost;
|
2016-01-19 20:13:20 +00:00
|
|
|
CAMBEFEC m_fec;
|
2016-02-25 19:54:18 +00:00
|
|
|
unsigned int m_rfBits;
|
|
|
|
unsigned int m_netBits;
|
|
|
|
unsigned int m_rfErrs;
|
|
|
|
unsigned int m_netErrs;
|
2016-01-25 21:56:57 +00:00
|
|
|
unsigned char* m_lastFrame;
|
2016-07-21 17:09:29 +00:00
|
|
|
bool m_lastFrameValid;
|
2016-02-15 18:45:57 +00:00
|
|
|
CDMREMB m_lastEMB;
|
2016-08-11 16:28:47 +00:00
|
|
|
unsigned char m_rssi;
|
2016-01-19 17:43:33 +00:00
|
|
|
FILE* m_fp;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
static unsigned int m_colorCode;
|
2016-07-21 17:09:29 +00:00
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
static CModem* m_modem;
|
2016-09-14 06:41:37 +00:00
|
|
|
static CDMRNetwork* m_network;
|
2016-05-09 17:14:27 +00:00
|
|
|
static CDisplay* m_display;
|
2016-02-15 18:01:21 +00:00
|
|
|
static bool m_duplex;
|
2016-04-12 17:26:13 +00:00
|
|
|
static CDMRLookup* m_lookup;
|
2016-06-16 20:40:05 +00:00
|
|
|
static unsigned int m_hangCount;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-12-21 19:58:46 +00:00
|
|
|
static CRSSIInterpolator* m_rssiMapper;
|
2016-08-08 20:26:18 +00:00
|
|
|
|
2016-09-06 18:42:15 +00:00
|
|
|
static unsigned int m_jitterTime;
|
|
|
|
static unsigned int m_jitterSlots;
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
static unsigned char* m_idle;
|
|
|
|
|
|
|
|
static FLCO m_flco1;
|
|
|
|
static unsigned char m_id1;
|
2016-01-26 18:28:39 +00:00
|
|
|
static bool m_voice1;
|
2016-01-14 18:45:04 +00:00
|
|
|
static FLCO m_flco2;
|
|
|
|
static unsigned char m_id2;
|
2016-01-26 18:28:39 +00:00
|
|
|
static bool m_voice2;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-02-25 19:54:18 +00:00
|
|
|
void writeQueueRF(const unsigned char* data);
|
|
|
|
void writeQueueNet(const unsigned char* data);
|
2016-03-23 17:30:06 +00:00
|
|
|
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 18:45:04 +00:00
|
|
|
|
2016-04-26 17:22:47 +00:00
|
|
|
void endOfRFData();
|
|
|
|
void endOfNetData();
|
|
|
|
|
2016-02-25 19:54:18 +00:00
|
|
|
void writeEndRF(bool writeEnd = false);
|
|
|
|
void writeEndNet(bool writeEnd = false);
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
bool openFile();
|
|
|
|
bool writeFile(const unsigned char* data);
|
|
|
|
void closeFile();
|
|
|
|
|
2016-07-21 16:46:37 +00:00
|
|
|
bool insertSilence(const unsigned char* data, unsigned char seqNo);
|
2016-01-25 21:56:57 +00:00
|
|
|
void insertSilence(unsigned int count);
|
2016-01-19 19:34:49 +00:00
|
|
|
|
2016-01-26 18:28:39 +00:00
|
|
|
static void setShortLC(unsigned int slotNo, unsigned int id, FLCO flco = FLCO_GROUP, bool voice = true);
|
2016-01-14 18:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|