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
|
|
|
|
|
|
|
|
#include "HomebrewDMRIPSC.h"
|
2016-01-19 19:34:49 +00:00
|
|
|
#include "StopWatch.h"
|
2016-01-14 18:45:04 +00:00
|
|
|
#include "EmbeddedLC.h"
|
|
|
|
#include "RingBuffer.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"
|
|
|
|
#include "LC.h"
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
static void init(unsigned int colorCode, CModem* modem, CHomebrewDMRIPSC* network, IDisplay* display);
|
|
|
|
|
|
|
|
private:
|
2016-01-19 17:43:33 +00:00
|
|
|
unsigned int m_slotNo;
|
|
|
|
CRingBuffer<unsigned char> m_queue;
|
|
|
|
RPT_STATE m_state;
|
|
|
|
CEmbeddedLC m_embeddedLC;
|
|
|
|
CLC* m_lc;
|
|
|
|
unsigned char m_seqNo;
|
|
|
|
unsigned char m_n;
|
|
|
|
CTimer m_networkWatchdog;
|
|
|
|
CTimer m_timeoutTimer;
|
2016-01-19 19:34:49 +00:00
|
|
|
CTimer m_packetTimer;
|
|
|
|
CStopWatch m_elapsed;
|
|
|
|
unsigned int m_frames;
|
|
|
|
unsigned int m_lost;
|
2016-01-19 20:13:20 +00:00
|
|
|
CAMBEFEC m_fec;
|
|
|
|
unsigned int m_bits;
|
|
|
|
unsigned int m_errs;
|
2016-01-19 17:43:33 +00:00
|
|
|
FILE* m_fp;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
static unsigned int m_colorCode;
|
|
|
|
static CModem* m_modem;
|
|
|
|
static CHomebrewDMRIPSC* m_network;
|
|
|
|
static IDisplay* m_display;
|
|
|
|
|
|
|
|
static unsigned char* m_idle;
|
2016-01-21 18:38:45 +00:00
|
|
|
static unsigned char* m_silence;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
|
|
|
static FLCO m_flco1;
|
|
|
|
static unsigned char m_id1;
|
|
|
|
static FLCO m_flco2;
|
|
|
|
static unsigned char m_id2;
|
|
|
|
|
2016-01-18 18:36:14 +00:00
|
|
|
void writeQueue(const unsigned char* data);
|
2016-01-14 18:45:04 +00:00
|
|
|
void writeNetwork(const unsigned char* data, unsigned char dataType);
|
|
|
|
|
|
|
|
void writeEndOfTransmission();
|
|
|
|
|
|
|
|
bool openFile();
|
|
|
|
bool writeFile(const unsigned char* data);
|
|
|
|
void closeFile();
|
|
|
|
|
2016-01-22 06:43:08 +00:00
|
|
|
bool insertSilence(const CDMRData& dmrData);
|
2016-01-19 19:34:49 +00:00
|
|
|
void insertSilence(unsigned char seqNo);
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
static void setShortLC(unsigned int slotNo, unsigned int id, FLCO flco = FLCO_GROUP);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|