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
|
|
|
|
|
|
|
|
#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-03-14 20:55:15 +00:00
|
|
|
#include "StopWatch.h"
|
2016-02-22 21:13:48 +00:00
|
|
|
#include "YSFParrot.h"
|
2016-02-16 07:27:13 +00:00
|
|
|
#include "Display.h"
|
|
|
|
#include "Defines.h"
|
2016-02-28 20:34:37 +00:00
|
|
|
#include "YSFFICH.h"
|
2016-02-16 07:27:13 +00:00
|
|
|
#include "Timer.h"
|
|
|
|
#include "Modem.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class CYSFControl {
|
|
|
|
public:
|
2016-02-22 21:13:48 +00:00
|
|
|
CYSFControl(const std::string& callsign, IDisplay* display, unsigned int timeout, bool duplex, bool parrot);
|
2016-02-16 07:27:13 +00:00
|
|
|
~CYSFControl();
|
|
|
|
|
|
|
|
bool writeModem(unsigned char* data);
|
|
|
|
|
|
|
|
unsigned int readModem(unsigned char* data);
|
|
|
|
|
2016-03-14 20:55:15 +00:00
|
|
|
void clock();
|
2016-02-16 07:27:13 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
IDisplay* m_display;
|
|
|
|
bool m_duplex;
|
|
|
|
CRingBuffer<unsigned char> m_queue;
|
2016-02-25 19:54:18 +00:00
|
|
|
RPT_RF_STATE m_state;
|
2016-02-16 07:27:13 +00:00
|
|
|
CTimer m_timeoutTimer;
|
2016-03-14 20:55:15 +00:00
|
|
|
CStopWatch m_interval;
|
2016-02-16 07:27:13 +00:00
|
|
|
unsigned int m_frames;
|
2016-02-28 20:34:37 +00:00
|
|
|
CYSFFICH m_fich;
|
2016-02-29 22:43:26 +00:00
|
|
|
unsigned char* m_source;
|
|
|
|
unsigned char* m_dest;
|
2016-02-29 19:52:11 +00:00
|
|
|
CYSFPayload m_payload;
|
2016-02-22 21:13:48 +00:00
|
|
|
CYSFParrot* m_parrot;
|
2016-02-16 07:27:13 +00:00
|
|
|
FILE* m_fp;
|
|
|
|
|
|
|
|
void writeQueue(const unsigned char* data);
|
2016-02-22 21:13:48 +00:00
|
|
|
void writeParrot(const unsigned char* data);
|
2016-02-16 07:27:13 +00:00
|
|
|
|
|
|
|
void writeEndOfTransmission();
|
|
|
|
|
|
|
|
bool openFile();
|
|
|
|
bool writeFile(const unsigned char* data);
|
|
|
|
void closeFile();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|