2016-01-14 18:45:04 +00:00
|
|
|
/*
|
2020-04-11 19:42:05 +00:00
|
|
|
* Copyright (C) 2016,2017,2018,2020 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(DISPLAY_H)
|
|
|
|
#define DISPLAY_H
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
#include "Timer.h"
|
2020-03-07 23:06:27 +00:00
|
|
|
#include "UserDBentry.h"
|
2016-05-09 17:14:27 +00:00
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
#include <string>
|
|
|
|
|
2018-06-11 20:30:49 +00:00
|
|
|
#include <cstdint>
|
|
|
|
|
2018-07-31 03:36:37 +00:00
|
|
|
class CConf;
|
|
|
|
class CModem;
|
|
|
|
class CUMP;
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
class CDisplay
|
2016-01-14 18:45:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-05-09 17:14:27 +00:00
|
|
|
CDisplay();
|
|
|
|
virtual ~CDisplay() = 0;
|
|
|
|
|
|
|
|
virtual bool open() = 0;
|
|
|
|
|
|
|
|
void setIdle();
|
|
|
|
void setLockout();
|
|
|
|
void setError(const char* text);
|
2018-08-15 16:17:42 +00:00
|
|
|
void setQuit();
|
2020-04-11 19:42:05 +00:00
|
|
|
void setFM();
|
2016-05-09 17:14:27 +00:00
|
|
|
|
|
|
|
void writeDStar(const char* my1, const char* my2, const char* your, const char* type, const char* reflector);
|
2017-01-05 19:44:52 +00:00
|
|
|
void writeDStarRSSI(unsigned char rssi);
|
2017-02-12 18:37:00 +00:00
|
|
|
void writeDStarBER(float ber);
|
2016-05-09 17:14:27 +00:00
|
|
|
void clearDStar();
|
|
|
|
|
|
|
|
void writeDMR(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type);
|
2020-03-07 23:06:27 +00:00
|
|
|
void writeDMR(unsigned int slotNo, const class CUserDBentry& src, bool group, const std::string& dst, const char* type);
|
2017-01-05 19:44:52 +00:00
|
|
|
void writeDMRRSSI(unsigned int slotNo, unsigned char rssi);
|
2017-02-12 18:37:00 +00:00
|
|
|
void writeDMRBER(unsigned int slotNo, float ber);
|
2017-11-13 20:48:47 +00:00
|
|
|
void writeDMRTA(unsigned int slotNo, unsigned char* talkerAlias, const char* type);
|
2016-05-09 17:14:27 +00:00
|
|
|
void clearDMR(unsigned int slotNo);
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-19 18:08:48 +00:00
|
|
|
void writeFusion(const char* source, const char* dest, const char* type, const char* origin);
|
2017-01-05 19:44:52 +00:00
|
|
|
void writeFusionRSSI(unsigned char rssi);
|
2017-02-12 18:37:00 +00:00
|
|
|
void writeFusionBER(float ber);
|
2016-05-09 17:14:27 +00:00
|
|
|
void clearFusion();
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-09-12 19:23:50 +00:00
|
|
|
void writeP25(const char* source, bool group, unsigned int dest, const char* type);
|
2017-01-05 19:44:52 +00:00
|
|
|
void writeP25RSSI(unsigned char rssi);
|
2017-02-12 18:37:00 +00:00
|
|
|
void writeP25BER(float ber);
|
2016-09-12 17:12:32 +00:00
|
|
|
void clearP25();
|
|
|
|
|
2018-01-17 19:04:00 +00:00
|
|
|
void writeNXDN(const char* source, bool group, unsigned int dest, const char* type);
|
2020-03-09 20:46:24 +00:00
|
|
|
void writeNXDN(const class CUserDBentry& source, bool group, unsigned int dest, const char* type);
|
2018-01-17 19:04:00 +00:00
|
|
|
void writeNXDNRSSI(unsigned char rssi);
|
|
|
|
void writeNXDNBER(float ber);
|
|
|
|
void clearNXDN();
|
|
|
|
|
2018-06-11 20:30:49 +00:00
|
|
|
void writePOCSAG(uint32_t ric, const std::string& message);
|
|
|
|
void clearPOCSAG();
|
|
|
|
|
2016-09-15 09:50:35 +00:00
|
|
|
void writeCW();
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void close() = 0;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void clock(unsigned int ms);
|
2016-03-03 18:01:01 +00:00
|
|
|
|
2018-07-31 06:54:27 +00:00
|
|
|
static CDisplay* createDisplay(const CConf& conf, CUMP* ump, CModem* modem);
|
2018-07-31 03:36:37 +00:00
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
protected:
|
|
|
|
virtual void setIdleInt() = 0;
|
|
|
|
virtual void setLockoutInt() = 0;
|
|
|
|
virtual void setErrorInt(const char* text) = 0;
|
2018-08-15 16:17:42 +00:00
|
|
|
virtual void setQuitInt() = 0;
|
2020-04-11 19:42:05 +00:00
|
|
|
virtual void setFMInt() = 0;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void writeDStarInt(const char* my1, const char* my2, const char* your, const char* type, const char* reflector) = 0;
|
2017-01-05 19:44:52 +00:00
|
|
|
virtual void writeDStarRSSIInt(unsigned char rssi);
|
2017-02-12 18:37:00 +00:00
|
|
|
virtual void writeDStarBERInt(float ber);
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void clearDStarInt() = 0;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type) = 0;
|
2020-03-07 23:06:27 +00:00
|
|
|
virtual int writeDMRIntEx(unsigned int slotNo, const class CUserDBentry& src, bool group, const std::string& dst, const char* type);
|
2017-01-05 19:44:52 +00:00
|
|
|
virtual void writeDMRRSSIInt(unsigned int slotNo, unsigned char rssi);
|
2017-11-13 20:48:47 +00:00
|
|
|
virtual void writeDMRTAInt(unsigned int slotNo, unsigned char* talkerAlias, const char* type);
|
2017-02-12 18:37:00 +00:00
|
|
|
virtual void writeDMRBERInt(unsigned int slotNo, float ber);
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void clearDMRInt(unsigned int slotNo) = 0;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-05-19 18:08:48 +00:00
|
|
|
virtual void writeFusionInt(const char* source, const char* dest, const char* type, const char* origin) = 0;
|
2017-01-05 19:44:52 +00:00
|
|
|
virtual void writeFusionRSSIInt(unsigned char rssi);
|
2017-02-12 18:37:00 +00:00
|
|
|
virtual void writeFusionBERInt(float ber);
|
2016-05-09 17:14:27 +00:00
|
|
|
virtual void clearFusionInt() = 0;
|
2016-01-14 18:45:04 +00:00
|
|
|
|
2016-09-12 19:23:50 +00:00
|
|
|
virtual void writeP25Int(const char* source, bool group, unsigned int dest, const char* type) = 0;
|
2017-01-05 19:44:52 +00:00
|
|
|
virtual void writeP25RSSIInt(unsigned char rssi);
|
2017-02-12 18:37:00 +00:00
|
|
|
virtual void writeP25BERInt(float ber);
|
2016-09-12 17:12:32 +00:00
|
|
|
virtual void clearP25Int() = 0;
|
|
|
|
|
2018-01-17 19:04:00 +00:00
|
|
|
virtual void writeNXDNInt(const char* source, bool group, unsigned int dest, const char* type) = 0;
|
2020-03-09 20:46:24 +00:00
|
|
|
virtual int writeNXDNIntEx(const class CUserDBentry& source, bool group, unsigned int dest, const char* type);
|
2018-01-17 19:04:00 +00:00
|
|
|
virtual void writeNXDNRSSIInt(unsigned char rssi);
|
|
|
|
virtual void writeNXDNBERInt(float ber);
|
|
|
|
virtual void clearNXDNInt() = 0;
|
|
|
|
|
2018-06-11 20:30:49 +00:00
|
|
|
virtual void writePOCSAGInt(uint32_t ric, const std::string& message) = 0;
|
|
|
|
virtual void clearPOCSAGInt() = 0;
|
|
|
|
|
2016-09-15 09:50:35 +00:00
|
|
|
virtual void writeCWInt() = 0;
|
2016-09-15 13:17:51 +00:00
|
|
|
virtual void clearCWInt() = 0;
|
2016-09-15 09:50:35 +00:00
|
|
|
|
2016-05-21 11:28:09 +00:00
|
|
|
virtual void clockInt(unsigned int ms);
|
|
|
|
|
2016-01-14 18:45:04 +00:00
|
|
|
private:
|
2016-05-09 17:14:27 +00:00
|
|
|
CTimer m_timer1;
|
|
|
|
CTimer m_timer2;
|
|
|
|
unsigned char m_mode1;
|
|
|
|
unsigned char m_mode2;
|
2016-01-14 18:45:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|