forked from g4klx/MMDVM-Display
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMMDVM-Display.h
More file actions
82 lines (67 loc) · 2.49 KB
/
Copy pathMMDVM-Display.h
File metadata and controls
82 lines (67 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Copyright (C) 2015-2021,2023,2026 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(MMDVM_Display_H)
#define MMDVM_Display_H
#include "ModemSerialPort.h"
#include "Display.h"
#include "Timer.h"
#include "Conf.h"
#include <nlohmann/json.hpp>
#include <string>
class CMMDVMDisplay
{
public:
CMMDVMDisplay(const std::string& confFile);
~CMMDVMDisplay();
int run();
private:
CConf m_conf;
CDisplay* m_display;
CModemSerialPort* m_msp;
std::string m_hostConfName;
std::string m_mqttInfoName;
bool m_temperatureInF;
CTimer m_confTimer;
CTimer m_addrTimer;
bool createDisplay();
void writeJSONMessage(const std::string& message);
void readHost(const std::string& text);
void readInfo(const std::string& text);
void readDisplay(const unsigned char* data, unsigned int length);
void parseMMDVM(const nlohmann::json& json);
void parseRSSI(const nlohmann::json& json);
void parseBER(const nlohmann::json& json);
void parseText(const nlohmann::json& json);
void parseDStar(const nlohmann::json& json);
void parseDMR(const nlohmann::json& json);
void parseYSF(const nlohmann::json& json);
void parseP25(const nlohmann::json& json);
void parseNXDN(const nlohmann::json& json);
void parsePOCSAG(const nlohmann::json& json);
void parseFM(const nlohmann::json& json);
void parseCPU(const nlohmann::json& json);
void parsePrograms(const nlohmann::json& json);
void parseAddresses(const nlohmann::json& json);
void parseHostConfig(const nlohmann::json& json);
void pollHostConfig();
void pollHostAddresses();
static void onDisplay(const unsigned char* data, unsigned int length);
static void onHost(const unsigned char* data, unsigned int length);
static void onInfo(const unsigned char* data, unsigned int length);
};
#endif