2016-02-16 07:27:13 +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(YSFControl_H)
|
|
|
|
#define YSFControl_H
|
|
|
|
|
2016-05-16 20:57:32 +00:00
|
|
|
#include "YSFNetwork.h"
|
2016-02-16 07:27:13 +00:00
|
|
|
#include "YSFDefines.h"
|
2016-02-29 19:52:11 +00:00
|
|
|
#include "YSFPayload.h"
|
2016-02-16 07:27:13 +00:00
|
|
|
#include "RingBuffer.h"
|
2016-07-12 17:20:48 +00:00
|
|
|
#include "StopWatch.h"
|
2016-02-16 07:27:13 +00:00
|
|
|
#include "Display.h"
|
|
|
|
#include "Defines.h"
|
|
|
|
#include "Timer.h"
|
|
|
|
#include "Modem.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class CYSFControl {
|
|
|
|
public:
|
2016-08-09 19:05:35 +00:00
|
|
|
CYSFControl(const std::string& callsign, CYSFNetwork* network, CDisplay* display, unsigned int timeout, bool duplex, int rssiMultiplier, int rssiOffset);
|
2016-02-16 07:27:13 +00:00
|
|
|
~CYSFControl();
|
|
|
|
|
2016-08-08 20:26:18 +00:00
|
|
|
bool writeModem(unsigned char* data, unsigned int len);
|
2016-02-16 07:27:13 +00:00
|
|
|
|
|
|
|
unsigned int readModem(unsigned char* data);
|
|
|
|
|
2016-05-16 20:57:32 +00:00
|
|
|
void clock(unsigned int ms);
|
2016-02-16 07:27:13 +00:00
|
|
|
|
|
|
|
private:
|
2016-05-16 20:57:32 +00:00
|
|
|
CYSFNetwork* m_network;
|
2016-05-09 17:14:27 +00:00
|
|
|
CDisplay* m_display;
|
2016-02-16 07:27:13 +00:00
|
|
|
bool m_duplex;
|
|
|
|
CRingBuffer<unsigned char> m_queue;
|
2016-05-16 20:57:32 +00:00
|
|
|
RPT_RF_STATE m_rfState;
|
|
|
|
RPT_NET_STATE m_netState;
|
|
|
|
CTimer m_rfTimeoutTimer;
|
|
|
|
CTimer m_netTimeoutTimer;
|
2016-07-15 05:32:56 +00:00
|
|
|
CTimer m_packetTimer;
|
2016-05-16 20:57:32 +00:00
|
|
|
CTimer m_networkWatchdog;
|
2016-07-12 17:20:48 +00:00
|
|
|
CStopWatch m_elapsed;
|
2016-05-16 20:57:32 +00:00
|
|
|
unsigned int m_rfFrames;
|
|
|
|
unsigned int m_netFrames;
|
2016-07-12 17:20:48 +00:00
|
|
|
unsigned int m_netLost;
|
2016-05-16 20:57:32 +00:00
|
|
|
unsigned int m_rfErrs;
|
|
|
|
unsigned int m_rfBits;
|
2016-05-25 06:51:42 +00:00
|
|
|
unsigned int m_netErrs;
|
|
|
|
unsigned int m_netBits;
|
2016-05-19 18:08:48 +00:00
|
|
|
unsigned char* m_rfSource;
|
|
|
|
unsigned char* m_rfDest;
|
|
|
|
unsigned char* m_netSource;
|
|
|
|
unsigned char* m_netDest;
|
2016-07-12 17:20:48 +00:00
|
|
|
unsigned char* m_lastFrame;
|
2016-07-21 17:09:29 +00:00
|
|
|
bool m_lastFrameValid;
|
2016-07-12 17:39:49 +00:00
|
|
|
unsigned char m_lastMode;
|
2016-07-12 17:20:48 +00:00
|
|
|
unsigned char m_netN;
|
2016-05-23 20:45:52 +00:00
|
|
|
CYSFPayload m_rfPayload;
|
|
|
|
CYSFPayload m_netPayload;
|
2016-08-09 19:05:35 +00:00
|
|
|
int m_rssiMultiplier;
|
|
|
|
int m_rssiOffset;
|
2016-02-16 07:27:13 +00:00
|
|
|
FILE* m_fp;
|
|
|
|
|
2016-05-16 20:57:32 +00:00
|
|
|
void writeQueueRF(const unsigned char* data);
|
|
|
|
void writeQueueNet(const unsigned char* data);
|
2016-06-13 20:29:19 +00:00
|
|
|
void writeNetwork(const unsigned char* data, unsigned int count);
|
2016-05-16 20:57:32 +00:00
|
|
|
void writeNetwork();
|
2016-02-16 07:27:13 +00:00
|
|
|
|
2016-05-16 20:57:32 +00:00
|
|
|
void writeEndRF();
|
|
|
|
void writeEndNet();
|
2016-02-16 07:27:13 +00:00
|
|
|
|
|
|
|
bool openFile();
|
|
|
|
bool writeFile(const unsigned char* data);
|
|
|
|
void closeFile();
|
2016-07-12 17:20:48 +00:00
|
|
|
|
|
|
|
bool insertSilence(const unsigned char* data, unsigned char n);
|
|
|
|
void insertSilence(unsigned int count);
|
2016-02-16 07:27:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|