2016-01-14 18:45:04 +00:00
|
|
|
/*
|
2019-01-10 09:05:15 +00:00
|
|
|
* Copyright (C) 2015-2019 by Jonathan Naylor G4KLX
|
2016-01-14 18:45:04 +00: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(DMRSlot_H)
|
|
|
|
#define DMRSlot_H
|
|
|
|
|
2016-12-21 19:58:46 +00:00
|
|
|
#include "RSSIInterpolator.h"
|
2017-01-10 19:27:12 +00:00
|
|
|
#include "DMREmbeddedData.h"
|
2016-09-14 06:41:37 +00:00
|
|
|
#include "DMRNetwork.h"
|
2018-12-08 14:09:59 +00:00
|
|
|
#include "DMRTA.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-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>
|
|
|
|
|
2017-10-04 10:20:37 +00:00
|
|
|
enum ACTIVITY_TYPE {
|
2017-10-04 20:56:40 +00:00
|
|
|
ACTIVITY_NONE,
|
|
|
|
ACTIVITY_VOICE,
|
|
|
|
ACTIVITY_DATA,
|
|
|
|
ACTIVITY_CSBK,
|
|
|
|
ACTIVITY_EMERG
|
2017-10-04 10:20:37 +00:00
|
|
|
};
|
2017-10-03 09:03:13 +00:00
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
class CDMRSlot {
|
|
|
|
public:
|
|
|
|
CDMRSlot(unsigned int slotNo, unsigned int timeout);
|
|
|
|
~CDMRSlot();
|
|
|
|
|
2017-03-12 19:06:47 +00:00
|
|
|
bool 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
|
|
|
|
2019-01-10 09:05:15 +00:00
|
|
|
bool isBusy() const;
|
|
|
|
|
2019-01-19 17:15:24 +00:00
|
|
|
void enable(bool enabled);
|
|
|
|
|
2019-11-17 02:57:58 +00:00
|
|
|
static void init(unsigned int colorCode, bool embeddedLCOnly, bool dumpTAData, unsigned int callHang, CModem* modem, CDMRNetwork* network, CDisplay* display, bool duplex, CDMRLookup* lookup, CRSSIInterpolator* rssiMapper, unsigned int jitter, DMR_OVCM_TYPES ovcm);
|
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;
|
2017-01-10 19:27:12 +00:00
|
|
|
CDMREmbeddedData m_rfEmbeddedLC;
|
|
|
|
CDMREmbeddedData* m_rfEmbeddedData;
|
|
|
|
unsigned int m_rfEmbeddedReadN;
|
|
|
|
unsigned int m_rfEmbeddedWriteN;
|
2017-02-12 18:37:00 +00:00
|
|
|
unsigned char m_rfTalkerId;
|
2018-12-08 14:09:59 +00:00
|
|
|
CDMRTA m_rfTalkerAlias;
|
2017-01-10 19:27:12 +00:00
|
|
|
CDMREmbeddedData m_netEmbeddedLC;
|
|
|
|
CDMREmbeddedData* m_netEmbeddedData;
|
|
|
|
unsigned int m_netEmbeddedReadN;
|
|
|
|
unsigned int m_netEmbeddedWriteN;
|
2017-02-12 18:37:00 +00:00
|
|
|
unsigned char m_netTalkerId;
|
2016-02-25 19:54:18 +00:00
|
|
|
CDMRLC* m_rfLC;
|
|
|
|
CDMRLC* m_netLC;
|
2016-02-28 17:40:15 +00:00
|
|
|
unsigned char m_rfSeqNo;
|
2016-02-28 17:18:13 +00:00
|
|
|
unsigned char m_rfN;
|
2018-07-22 01:01:55 +00:00
|
|
|
unsigned char m_lastrfN;
|
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;
|
2018-02-08 20:25:03 +00:00
|
|
|
CTimer m_packetTimer;
|
2016-03-14 20:55:15 +00:00
|
|
|
CStopWatch m_interval;
|
2018-02-08 20:25:03 +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;
|
2017-03-12 19:06:47 +00:00
|
|
|
bool m_rfTimeout;
|
|
|
|
bool m_netTimeout;
|
2018-02-08 20:25:03 +00:00
|
|
|
unsigned char* m_lastFrame;
|
|
|
|
bool m_lastFrameValid;
|
2016-08-11 16:28:47 +00:00
|
|
|
unsigned char m_rssi;
|
2017-01-05 19:15:10 +00:00
|
|
|
unsigned char m_maxRSSI;
|
|
|
|
unsigned char m_minRSSI;
|
|
|
|
unsigned int m_aveRSSI;
|
|
|
|
unsigned int m_rssiCount;
|
2019-01-19 17:15:24 +00:00
|
|
|
bool m_enabled;
|
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
|
|
|
|
2017-01-16 12:10:23 +00:00
|
|
|
static bool m_embeddedLCOnly;
|
2017-02-27 20:17:55 +00:00
|
|
|
static bool m_dumpTAData;
|
2017-01-16 12:10:23 +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;
|
2019-11-17 02:57:58 +00:00
|
|
|
static DMR_OVCM_TYPES m_ovcm;
|
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
|
|
|
|
2018-02-08 20:25:03 +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;
|
|
|
|
|
2017-10-03 09:03:13 +00:00
|
|
|
static FLCO m_flco1;
|
2016-01-14 18:45:04 +00:00
|
|
|
static unsigned char m_id1;
|
2017-10-04 10:20:37 +00:00
|
|
|
static ACTIVITY_TYPE m_activity1;
|
2016-01-14 18:45:04 +00:00
|
|
|
static FLCO m_flco2;
|
|
|
|
static unsigned char m_id2;
|
2017-10-04 10:20:37 +00:00
|
|
|
static ACTIVITY_TYPE m_activity2;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2017-11-26 17:56:20 +00:00
|
|
|
void logGPSPosition(const unsigned char* data);
|
2017-11-13 20:48:47 +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-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();
|
|
|
|
|
2018-02-08 20:25:03 +00:00
|
|
|
bool insertSilence(const unsigned char* data, unsigned char seqNo);
|
|
|
|
void insertSilence(unsigned int count);
|
2016-01-19 19:34:49 +00:00
|
|
|
|
2017-10-04 10:20:37 +00:00
|
|
|
static void setShortLC(unsigned int slotNo, unsigned int id, FLCO flco = FLCO_GROUP, ACTIVITY_TYPE type = ACTIVITY_NONE);
|
2016-01-14 18:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|