2016-04-06 18:53:25 +00:00
|
|
|
/*
|
2020-04-11 19:42:05 +00:00
|
|
|
* Copyright (C) 2016,2017,2018,2020 by Jonathan Naylor G4KLX
|
2016-04-06 18:53:25 +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.
|
|
|
|
*/
|
|
|
|
|
2017-11-15 10:47:56 +00:00
|
|
|
#include "NetworkInfo.h"
|
2016-04-06 18:53:25 +00:00
|
|
|
#include "Nextion.h"
|
|
|
|
#include "Log.h"
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstring>
|
2016-06-01 10:55:24 +00:00
|
|
|
#include <ctime>
|
2016-09-09 09:42:01 +00:00
|
|
|
#include <clocale>
|
2017-11-13 20:48:47 +00:00
|
|
|
//#include <unistd.h>
|
2017-10-02 19:04:46 +00:00
|
|
|
|
2017-02-12 18:37:00 +00:00
|
|
|
const unsigned int DSTAR_RSSI_COUNT = 3U; // 3 * 420ms = 1260ms
|
|
|
|
const unsigned int DSTAR_BER_COUNT = 63U; // 63 * 20ms = 1260ms
|
|
|
|
const unsigned int DMR_RSSI_COUNT = 4U; // 4 * 360ms = 1440ms
|
|
|
|
const unsigned int DMR_BER_COUNT = 24U; // 24 * 60ms = 1440ms
|
2017-01-05 19:44:52 +00:00
|
|
|
const unsigned int YSF_RSSI_COUNT = 13U; // 13 * 100ms = 1300ms
|
2017-02-12 18:37:00 +00:00
|
|
|
const unsigned int YSF_BER_COUNT = 13U; // 13 * 100ms = 1300ms
|
|
|
|
const unsigned int P25_RSSI_COUNT = 7U; // 7 * 180ms = 1260ms
|
|
|
|
const unsigned int P25_BER_COUNT = 7U; // 7 * 180ms = 1260ms
|
2018-01-17 19:04:00 +00:00
|
|
|
const unsigned int NXDN_RSSI_COUNT = 28U; // 28 * 40ms = 1120ms
|
|
|
|
const unsigned int NXDN_BER_COUNT = 28U; // 28 * 40ms = 1120ms
|
2017-01-05 19:44:52 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
#define LAYOUT_COMPAT_MASK (7 << 0) // compatibility for old setting
|
|
|
|
#define LAYOUT_TA_ENABLE (1 << 4) // enable Talker Alias (TA) display
|
|
|
|
#define LAYOUT_TA_COLOUR (1 << 5) // TA display with font colour change
|
|
|
|
#define LAYOUT_TA_FONTSIZE (1 << 6) // TA display with font size change
|
|
|
|
#define LAYOUT_DIY (1 << 7) // use ON7LDS-DIY layout
|
|
|
|
|
|
|
|
// bit[3:2] is used in Display.cpp to set connection speed for LCD panel.
|
|
|
|
// 00:low, others:high-speed. bit[2] is overlapped with LAYOUT_COMPAT_MASK.
|
|
|
|
#define LAYOUT_HIGHSPEED (3 << 2)
|
|
|
|
|
2018-09-05 20:12:12 +00:00
|
|
|
CNextion::CNextion(const std::string& callsign, unsigned int dmrid, ISerialPort* serial, unsigned int brightness, bool displayClock, bool utc, unsigned int idleBrightness, unsigned int screenLayout, unsigned int txFrequency, unsigned int rxFrequency, bool displayTempInF, const std::string& location) :
|
2016-05-09 17:14:27 +00:00
|
|
|
CDisplay(),
|
2016-04-08 11:47:05 +00:00
|
|
|
m_callsign(callsign),
|
2017-11-13 20:48:47 +00:00
|
|
|
m_ipaddress("(ip unknown)"),
|
2016-04-08 11:47:05 +00:00
|
|
|
m_dmrid(dmrid),
|
2016-10-06 17:38:16 +00:00
|
|
|
m_serial(serial),
|
2016-04-11 11:21:46 +00:00
|
|
|
m_brightness(brightness),
|
2016-06-01 10:55:24 +00:00
|
|
|
m_mode(MODE_IDLE),
|
|
|
|
m_displayClock(displayClock),
|
|
|
|
m_utc(utc),
|
2016-06-24 09:33:28 +00:00
|
|
|
m_idleBrightness(idleBrightness),
|
2020-06-14 07:00:20 +00:00
|
|
|
m_screenLayout(0),
|
2017-01-05 19:44:52 +00:00
|
|
|
m_clockDisplayTimer(1000U, 0U, 400U),
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1(0U),
|
|
|
|
m_rssiAccum2(0U),
|
|
|
|
m_berAccum1(0.0F),
|
|
|
|
m_berAccum2(0.0F),
|
2017-02-13 08:20:40 +00:00
|
|
|
m_rssiCount1(0U),
|
|
|
|
m_rssiCount2(0U),
|
|
|
|
m_berCount1(0U),
|
2018-09-05 20:12:12 +00:00
|
|
|
m_berCount2(0U),
|
|
|
|
m_txFrequency(txFrequency),
|
|
|
|
m_rxFrequency(rxFrequency),
|
2018-09-06 16:10:58 +00:00
|
|
|
m_fl_txFrequency(0.0F),
|
|
|
|
m_fl_rxFrequency(0.0F),
|
2018-09-05 20:12:12 +00:00
|
|
|
m_displayTempInF(displayTempInF),
|
|
|
|
m_location(location)
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
2016-10-06 17:38:16 +00:00
|
|
|
assert(serial != NULL);
|
2016-04-06 18:53:25 +00:00
|
|
|
assert(brightness >= 0U && brightness <= 100U);
|
2020-06-14 07:00:20 +00:00
|
|
|
|
|
|
|
static const unsigned int feature_set[] = {
|
|
|
|
0, // 0: G4KLX
|
|
|
|
0, // 1: (reserved, low speed)
|
|
|
|
// 2: ON7LDS
|
|
|
|
LAYOUT_TA_ENABLE | LAYOUT_TA_COLOUR | LAYOUT_TA_FONTSIZE,
|
|
|
|
LAYOUT_TA_ENABLE | LAYOUT_DIY, // 3: ON7LDS-DIY
|
|
|
|
LAYOUT_TA_ENABLE | LAYOUT_DIY, // 4: ON7LDS-DIY (high speed)
|
|
|
|
0, // 5: (reserved, high speed)
|
|
|
|
0, // 6: (reserved, high speed)
|
|
|
|
0, // 7: (reserved, high speed)
|
|
|
|
};
|
|
|
|
|
|
|
|
if (screenLayout & ~LAYOUT_COMPAT_MASK)
|
|
|
|
m_screenLayout = screenLayout & ~LAYOUT_COMPAT_MASK;
|
|
|
|
else
|
|
|
|
m_screenLayout = feature_set[screenLayout];
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CNextion::~CNextion()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CNextion::open()
|
|
|
|
{
|
2017-11-13 20:48:47 +00:00
|
|
|
unsigned char info[100U];
|
|
|
|
CNetworkInfo* m_network;
|
|
|
|
|
2016-10-06 17:38:16 +00:00
|
|
|
bool ret = m_serial->open();
|
2016-04-06 18:53:25 +00:00
|
|
|
if (!ret) {
|
|
|
|
LogError("Cannot open the port for the Nextion display");
|
2016-10-06 17:38:16 +00:00
|
|
|
delete m_serial;
|
2016-04-06 18:53:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-06 16:10:58 +00:00
|
|
|
info[0] = 0;
|
2017-11-13 20:48:47 +00:00
|
|
|
m_network = new CNetworkInfo;
|
|
|
|
m_network->getNetworkInterface(info);
|
|
|
|
m_ipaddress = (char*)info;
|
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("bkcmd=0");
|
2018-09-05 20:12:12 +00:00
|
|
|
sendCommandAction(0U);
|
|
|
|
|
2018-09-06 16:10:58 +00:00
|
|
|
m_fl_txFrequency = float(m_txFrequency) / 1000000.0F;
|
|
|
|
m_fl_rxFrequency = float(m_rxFrequency) / 1000000.0F;
|
2018-09-05 20:12:12 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
setIdle();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::setIdleInt()
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
2018-09-05 20:12:12 +00:00
|
|
|
// a few bits borrowed from Lieven De Samblanx ON7LDS, NextionDriver
|
|
|
|
char command[100U];
|
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("page MMDVM");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(1U);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(command, "dim=%u", m_idleBrightness);
|
|
|
|
sendCommand(command);
|
|
|
|
}
|
2018-09-05 20:12:12 +00:00
|
|
|
|
2017-11-13 20:48:47 +00:00
|
|
|
::sprintf(command, "t0.txt=\"%s/%u\"", m_callsign.c_str(), m_dmrid);
|
|
|
|
sendCommand(command);
|
2018-09-05 20:12:12 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_DIY) {
|
2017-12-17 18:09:28 +00:00
|
|
|
::sprintf(command, "t4.txt=\"%s\"", m_callsign.c_str());
|
|
|
|
sendCommand(command);
|
|
|
|
::sprintf(command, "t5.txt=\"%u\"", m_dmrid);
|
|
|
|
sendCommand(command);
|
2018-09-05 20:12:12 +00:00
|
|
|
sendCommandAction(17U);
|
2017-10-24 20:55:58 +00:00
|
|
|
|
2018-09-05 20:12:12 +00:00
|
|
|
::sprintf(command, "t30.txt=\"%3.4f\"",m_fl_rxFrequency); // RX freq
|
|
|
|
sendCommand(command);
|
|
|
|
sendCommandAction(20U);
|
|
|
|
|
|
|
|
::sprintf(command, "t32.txt=\"%3.4f\"",m_fl_txFrequency); // TX freq
|
|
|
|
sendCommand(command);
|
|
|
|
sendCommandAction(21U);
|
|
|
|
|
2018-09-06 16:10:58 +00:00
|
|
|
// CPU temperature
|
|
|
|
FILE* fp = ::fopen("/sys/class/thermal/thermal_zone0/temp", "rt");
|
|
|
|
if (fp != NULL) {
|
|
|
|
double val = 0.0;
|
|
|
|
int n = ::fscanf(fp, "%lf", &val);
|
|
|
|
::fclose(fp);
|
|
|
|
|
|
|
|
if (n == 1) {
|
|
|
|
val /= 1000.0;
|
|
|
|
if (m_displayTempInF) {
|
|
|
|
val = (1.8 * val) + 32.0;
|
2018-09-05 20:12:12 +00:00
|
|
|
::sprintf(command, "t20.txt=\"%2.1f %cF\"", val, 176);
|
|
|
|
} else {
|
|
|
|
::sprintf(command, "t20.txt=\"%2.1f %cC\"", val, 176);
|
|
|
|
}
|
|
|
|
sendCommand(command);
|
|
|
|
sendCommandAction(22U);
|
2018-09-06 16:10:58 +00:00
|
|
|
}
|
2018-09-05 20:12:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::sprintf(command, "t31.txt=\"%s\"", m_location.c_str()); // location
|
|
|
|
sendCommand(command);
|
|
|
|
sendCommandAction(23U);
|
|
|
|
} else {
|
|
|
|
sendCommandAction(17U);
|
|
|
|
}
|
|
|
|
|
2017-11-13 20:48:47 +00:00
|
|
|
sendCommand("t1.txt=\"MMDVM IDLE\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(11U);
|
2017-10-24 20:55:58 +00:00
|
|
|
|
2017-11-13 20:48:47 +00:00
|
|
|
::sprintf(command, "t3.txt=\"%s\"", m_ipaddress.c_str());
|
2016-04-08 11:47:05 +00:00
|
|
|
sendCommand(command);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(16U);
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2016-06-01 10:55:24 +00:00
|
|
|
m_clockDisplayTimer.start();
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
m_mode = MODE_IDLE;
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::setErrorInt(const char* text)
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
|
|
|
assert(text != NULL);
|
|
|
|
|
|
|
|
sendCommand("page MMDVM");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(1U);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
|
|
|
char command[20];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(command, "dim=%u", m_brightness);
|
|
|
|
sendCommand(command);
|
|
|
|
}
|
2016-06-24 07:30:46 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
::sprintf(command, "t0.txt=\"%s\"", text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(13U);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
|
|
|
sendCommand(command);
|
|
|
|
sendCommand("t1.txt=\"ERROR\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(14U);
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2016-06-01 10:55:24 +00:00
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
m_mode = MODE_ERROR;
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::setLockoutInt()
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
|
|
|
sendCommand("page MMDVM");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(1U);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2016-06-24 07:30:46 +00:00
|
|
|
char command[20];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(command, "dim=%u", m_brightness);
|
|
|
|
sendCommand(command);
|
|
|
|
}
|
2016-06-24 07:30:46 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("t0.txt=\"LOCKOUT\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(15U);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2016-06-01 10:55:24 +00:00
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
m_mode = MODE_LOCKOUT;
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2018-08-15 16:17:42 +00:00
|
|
|
void CNextion::setQuitInt()
|
|
|
|
{
|
|
|
|
sendCommand("page MMDVM");
|
|
|
|
sendCommandAction(1U);
|
|
|
|
|
|
|
|
char command[100];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(command, "dim=%u", m_idleBrightness);
|
|
|
|
sendCommand(command);
|
|
|
|
}
|
2018-08-15 16:17:42 +00:00
|
|
|
|
|
|
|
::sprintf(command, "t3.txt=\"%s\"", m_ipaddress.c_str());
|
|
|
|
sendCommand(command);
|
|
|
|
sendCommandAction(16U);
|
|
|
|
|
|
|
|
sendCommand("t0.txt=\"MMDVM STOPPED\"");
|
|
|
|
sendCommandAction(19U);
|
|
|
|
|
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
|
|
|
m_mode = MODE_QUIT;
|
|
|
|
}
|
|
|
|
|
2020-04-11 19:42:05 +00:00
|
|
|
void CNextion::setFMInt()
|
|
|
|
{
|
|
|
|
sendCommand("page MMDVM");
|
|
|
|
sendCommandAction(1U);
|
|
|
|
|
|
|
|
char command[20];
|
|
|
|
if (m_brightness > 0) {
|
|
|
|
::sprintf(command, "dim=%u", m_brightness);
|
|
|
|
sendCommand(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
sendCommand("t0.txt=\"FM\"");
|
|
|
|
sendCommandAction(15U);
|
|
|
|
|
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
|
|
|
m_mode = MODE_FM;
|
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::writeDStarInt(const char* my1, const char* my2, const char* your, const char* type, const char* reflector)
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
|
|
|
assert(my1 != NULL);
|
|
|
|
assert(my2 != NULL);
|
|
|
|
assert(your != NULL);
|
2016-04-12 16:46:48 +00:00
|
|
|
assert(type != NULL);
|
2016-04-16 20:20:18 +00:00
|
|
|
assert(reflector != NULL);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2017-12-10 20:50:47 +00:00
|
|
|
if (m_mode != MODE_DSTAR) {
|
2017-02-13 08:20:40 +00:00
|
|
|
sendCommand("page DStar");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(2U);
|
2017-12-10 20:50:47 +00:00
|
|
|
}
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2018-05-10 19:24:16 +00:00
|
|
|
char text[50U];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(text, "dim=%u", m_brightness);
|
|
|
|
sendCommand(text);
|
|
|
|
}
|
2016-06-24 07:30:46 +00:00
|
|
|
|
2016-04-12 06:18:01 +00:00
|
|
|
::sprintf(text, "t0.txt=\"%s %.8s/%4.4s\"", type, my1, my2);
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(42U);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2016-05-23 17:36:53 +00:00
|
|
|
::sprintf(text, "t1.txt=\"%.8s\"", your);
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(45U);
|
2016-05-23 17:36:53 +00:00
|
|
|
|
|
|
|
if (::strcmp(reflector, " ") != 0) {
|
|
|
|
::sprintf(text, "t2.txt=\"via %.8s\"", reflector);
|
2016-04-27 19:48:20 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(46U);
|
2016-04-16 20:20:18 +00:00
|
|
|
}
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2016-06-01 10:55:24 +00:00
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
m_mode = MODE_DSTAR;
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
|
|
|
m_berAccum1 = 0.0F;
|
2017-02-13 08:20:40 +00:00
|
|
|
m_rssiCount1 = 0U;
|
|
|
|
m_berCount1 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::writeDStarRSSIInt(unsigned char rssi)
|
|
|
|
{
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 += rssi;
|
|
|
|
m_rssiCount1++;
|
|
|
|
|
|
|
|
if (m_rssiCount1 == DSTAR_RSSI_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t3.txt=\"-%udBm\"", m_rssiAccum1 / DSTAR_RSSI_COUNT);
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(47U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_rssiCount1 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
2017-01-05 19:44:52 +00:00
|
|
|
|
2017-02-12 18:37:00 +00:00
|
|
|
void CNextion::writeDStarBERInt(float ber)
|
|
|
|
{
|
|
|
|
m_berAccum1 += ber;
|
|
|
|
m_berCount1++;
|
|
|
|
|
|
|
|
if (m_berCount1 == DSTAR_BER_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t4.txt=\"%.1f%%\"", m_berAccum1 / float(DSTAR_BER_COUNT));
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(48U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_berAccum1 = 0.0F;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_berCount1 = 0U;
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::clearDStarInt()
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
|
|
|
sendCommand("t0.txt=\"Listening\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(41U);
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("t1.txt=\"\"");
|
2016-05-23 17:36:53 +00:00
|
|
|
sendCommand("t2.txt=\"\"");
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand("t3.txt=\"\"");
|
2017-02-12 18:37:00 +00:00
|
|
|
sendCommand("t4.txt=\"\"");
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::writeDMRInt(unsigned int slotNo, const std::string& src, bool group, const std::string& dst, const char* type)
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
|
|
|
assert(type != NULL);
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
if (m_mode != MODE_DMR) {
|
|
|
|
sendCommand("page DMR");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(3U);
|
2017-12-10 20:50:47 +00:00
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2017-11-13 20:48:47 +00:00
|
|
|
if (slotNo == 1U) {
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_ENABLE) {
|
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t2.pco=0");
|
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE)
|
|
|
|
sendCommand("t2.font=4");
|
2017-11-13 20:48:47 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
sendCommand("t2.txt=\"2 Listening\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(69U);
|
2017-11-13 20:48:47 +00:00
|
|
|
} else {
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_ENABLE) {
|
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t0.pco=0");
|
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE)
|
|
|
|
sendCommand("t0.font=4");
|
2017-11-13 20:48:47 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
sendCommand("t0.txt=\"1 Listening\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(61U);
|
2017-11-13 20:48:47 +00:00
|
|
|
}
|
2016-04-11 11:21:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-10 19:24:16 +00:00
|
|
|
char text[50U];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(text, "dim=%u", m_brightness);
|
|
|
|
sendCommand(text);
|
|
|
|
}
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2016-06-24 07:30:46 +00:00
|
|
|
if (slotNo == 1U) {
|
2016-04-21 12:01:53 +00:00
|
|
|
::sprintf(text, "t0.txt=\"1 %s %s\"", type, src.c_str());
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_ENABLE) {
|
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t0.pco=0");
|
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE)
|
|
|
|
sendCommand("t0.font=4");
|
2017-11-13 20:48:47 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(62U);
|
2017-10-24 20:55:58 +00:00
|
|
|
|
2016-04-21 12:01:53 +00:00
|
|
|
::sprintf(text, "t1.txt=\"%s%s\"", group ? "TG" : "", dst.c_str());
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(65U);
|
2016-04-06 18:53:25 +00:00
|
|
|
} else {
|
2016-04-21 12:01:53 +00:00
|
|
|
::sprintf(text, "t2.txt=\"2 %s %s\"", type, src.c_str());
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_ENABLE) {
|
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t2.pco=0");
|
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE)
|
|
|
|
sendCommand("t2.font=4");
|
2017-11-13 20:48:47 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(70U);
|
2017-10-24 20:55:58 +00:00
|
|
|
|
2016-04-21 12:01:53 +00:00
|
|
|
::sprintf(text, "t3.txt=\"%s%s\"", group ? "TG" : "", dst.c_str());
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(73U);
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2016-06-01 10:55:24 +00:00
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
m_mode = MODE_DMR;
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
|
|
|
m_rssiAccum2 = 0U;
|
|
|
|
m_berAccum1 = 0.0F;
|
|
|
|
m_berAccum2 = 0.0F;
|
2017-02-13 08:20:40 +00:00
|
|
|
m_rssiCount1 = 0U;
|
|
|
|
m_rssiCount2 = 0U;
|
|
|
|
m_berCount1 = 0U;
|
|
|
|
m_berCount2 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::writeDMRRSSIInt(unsigned int slotNo, unsigned char rssi)
|
|
|
|
{
|
|
|
|
if (slotNo == 1U) {
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 += rssi;
|
|
|
|
m_rssiCount1++;
|
|
|
|
|
|
|
|
if (m_rssiCount1 == DMR_RSSI_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t4.txt=\"-%udBm\"", m_rssiAccum1 / DMR_RSSI_COUNT);
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(66U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_rssiCount1 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum2 += rssi;
|
|
|
|
m_rssiCount2++;
|
|
|
|
|
|
|
|
if (m_rssiCount2 == DMR_RSSI_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t5.txt=\"-%udBm\"", m_rssiAccum2 / DMR_RSSI_COUNT);
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(74U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum2 = 0U;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_rssiCount2 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-05 19:44:52 +00:00
|
|
|
|
2017-11-15 10:47:56 +00:00
|
|
|
void CNextion::writeDMRTAInt(unsigned int slotNo, unsigned char* talkerAlias, const char* type)
|
2017-11-13 20:48:47 +00:00
|
|
|
{
|
2020-06-14 07:00:20 +00:00
|
|
|
if (!(m_screenLayout & LAYOUT_TA_ENABLE))
|
2017-11-15 10:47:56 +00:00
|
|
|
return;
|
2017-11-14 18:46:29 +00:00
|
|
|
|
2017-11-15 10:47:56 +00:00
|
|
|
if (type[0] == ' ') {
|
2017-12-05 19:50:56 +00:00
|
|
|
if (slotNo == 1U) {
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t0.pco=33808");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(64U);
|
2017-12-05 19:50:56 +00:00
|
|
|
} else {
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t2.pco=33808");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(72U);
|
2017-12-05 19:50:56 +00:00
|
|
|
}
|
2018-02-05 19:07:23 +00:00
|
|
|
|
2017-11-15 10:47:56 +00:00
|
|
|
return;
|
2017-12-05 19:50:56 +00:00
|
|
|
}
|
2017-11-13 20:48:47 +00:00
|
|
|
|
2017-11-15 10:47:56 +00:00
|
|
|
if (slotNo == 1U) {
|
2018-05-10 19:24:16 +00:00
|
|
|
char text[50U];
|
2017-11-15 10:47:56 +00:00
|
|
|
::sprintf(text, "t0.txt=\"1 %s %s\"", type, talkerAlias);
|
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE) {
|
2017-11-15 10:47:56 +00:00
|
|
|
if (::strlen((char*)talkerAlias) > (16U-4U))
|
|
|
|
sendCommand("t0.font=3");
|
|
|
|
if (::strlen((char*)talkerAlias) > (20U-4U))
|
|
|
|
sendCommand("t0.font=2");
|
|
|
|
if (::strlen((char*)talkerAlias) > (24U-4U))
|
|
|
|
sendCommand("t0.font=1");
|
2020-06-14 07:00:20 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
2017-12-05 19:50:56 +00:00
|
|
|
sendCommand("t0.pco=1024");
|
2018-02-05 19:07:23 +00:00
|
|
|
|
2017-11-15 10:47:56 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(63U);
|
2017-11-15 10:47:56 +00:00
|
|
|
} else {
|
2018-05-10 19:24:16 +00:00
|
|
|
char text[50U];
|
2017-11-15 10:47:56 +00:00
|
|
|
::sprintf(text, "t2.txt=\"2 %s %s\"", type, talkerAlias);
|
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE) {
|
2017-11-15 10:47:56 +00:00
|
|
|
if (::strlen((char*)talkerAlias) > (16U-4U))
|
|
|
|
sendCommand("t2.font=3");
|
|
|
|
if (::strlen((char*)talkerAlias) > (20U-4U))
|
|
|
|
sendCommand("t2.font=2");
|
|
|
|
if (::strlen((char*)talkerAlias) > (24U-4U))
|
|
|
|
sendCommand("t2.font=1");
|
2020-06-14 07:00:20 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
2017-12-05 19:50:56 +00:00
|
|
|
sendCommand("t2.pco=1024");
|
2020-06-14 07:00:20 +00:00
|
|
|
|
2017-11-15 10:47:56 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(71U);
|
2017-12-10 20:50:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 18:37:00 +00:00
|
|
|
void CNextion::writeDMRBERInt(unsigned int slotNo, float ber)
|
|
|
|
{
|
|
|
|
if (slotNo == 1U) {
|
|
|
|
m_berAccum1 += ber;
|
|
|
|
m_berCount1++;
|
|
|
|
|
|
|
|
if (m_berCount1 == DMR_BER_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t6.txt=\"%.1f%%\"", m_berAccum1 / DMR_BER_COUNT);
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(67U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_berAccum1 = 0U;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_berCount1 = 0U;
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m_berAccum2 += ber;
|
|
|
|
m_berCount2++;
|
|
|
|
|
|
|
|
if (m_berCount2 == DMR_BER_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t7.txt=\"%.1f%%\"", m_berAccum2 / DMR_BER_COUNT);
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(75U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_berAccum2 = 0U;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_berCount2 = 0U;
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::clearDMRInt(unsigned int slotNo)
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
2018-09-05 20:12:12 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
if (slotNo == 1U) {
|
|
|
|
sendCommand("t0.txt=\"1 Listening\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(61U);
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_ENABLE) {
|
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t0.pco=0");
|
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE)
|
|
|
|
sendCommand("t0.font=4");
|
2017-11-13 20:48:47 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("t1.txt=\"\"");
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand("t4.txt=\"\"");
|
2017-02-12 18:37:00 +00:00
|
|
|
sendCommand("t6.txt=\"\"");
|
2017-02-13 08:20:40 +00:00
|
|
|
} else {
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("t2.txt=\"2 Listening\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(69U);
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2020-06-14 07:00:20 +00:00
|
|
|
if (m_screenLayout & LAYOUT_TA_ENABLE) {
|
|
|
|
if (m_screenLayout & LAYOUT_TA_COLOUR)
|
|
|
|
sendCommand("t2.pco=0");
|
|
|
|
if (m_screenLayout & LAYOUT_TA_FONTSIZE)
|
|
|
|
sendCommand("t2.font=4");
|
2017-11-13 20:48:47 +00:00
|
|
|
}
|
2017-11-15 10:47:56 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("t3.txt=\"\"");
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand("t5.txt=\"\"");
|
2017-02-12 18:37:00 +00:00
|
|
|
sendCommand("t7.txt=\"\"");
|
2017-02-13 08:20:40 +00:00
|
|
|
}
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-19 18:08:48 +00:00
|
|
|
void CNextion::writeFusionInt(const char* source, const char* dest, const char* type, const char* origin)
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
|
|
|
assert(source != NULL);
|
|
|
|
assert(dest != NULL);
|
2016-05-16 20:57:32 +00:00
|
|
|
assert(type != NULL);
|
2016-05-19 18:08:48 +00:00
|
|
|
assert(origin != NULL);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2017-12-10 20:50:47 +00:00
|
|
|
if (m_mode != MODE_YSF) {
|
2016-04-11 11:21:46 +00:00
|
|
|
sendCommand("page YSF");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(4U);
|
2017-12-10 20:50:47 +00:00
|
|
|
}
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
char text[30U];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(text, "dim=%u", m_brightness);
|
|
|
|
sendCommand(text);
|
|
|
|
}
|
2016-06-24 07:30:46 +00:00
|
|
|
|
2016-05-16 20:57:32 +00:00
|
|
|
::sprintf(text, "t0.txt=\"%s %.10s\"", type, source);
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(82U);
|
2016-04-06 18:53:25 +00:00
|
|
|
|
2016-05-21 11:52:56 +00:00
|
|
|
::sprintf(text, "t1.txt=\"%.10s\"", dest);
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(83U);
|
2016-05-21 11:52:56 +00:00
|
|
|
if (::strcmp(origin, " ") != 0) {
|
2016-05-23 17:04:17 +00:00
|
|
|
::sprintf(text, "t2.txt=\"at %.10s\"", origin);
|
2016-05-19 18:08:48 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(84U);
|
2016-05-19 18:08:48 +00:00
|
|
|
}
|
2016-04-11 11:21:46 +00:00
|
|
|
|
2016-06-01 10:55:24 +00:00
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
2016-04-11 11:21:46 +00:00
|
|
|
m_mode = MODE_YSF;
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
|
|
|
m_berAccum1 = 0.0F;
|
2017-02-13 08:20:40 +00:00
|
|
|
m_rssiCount1 = 0U;
|
|
|
|
m_berCount1 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::writeFusionRSSIInt(unsigned char rssi)
|
|
|
|
{
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 += rssi;
|
|
|
|
m_rssiCount1++;
|
|
|
|
|
|
|
|
if (m_rssiCount1 == YSF_RSSI_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t3.txt=\"-%udBm\"", m_rssiAccum1 / YSF_RSSI_COUNT);
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(85U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_rssiCount1 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
2017-01-05 19:44:52 +00:00
|
|
|
|
2017-02-12 18:37:00 +00:00
|
|
|
void CNextion::writeFusionBERInt(float ber)
|
|
|
|
{
|
|
|
|
m_berAccum1 += ber;
|
|
|
|
m_berCount1++;
|
|
|
|
|
|
|
|
if (m_berCount1 == YSF_BER_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t4.txt=\"%.1f%%\"", m_berAccum1 / float(YSF_BER_COUNT));
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(86U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_berAccum1 = 0.0F;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_berCount1 = 0U;
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 17:14:27 +00:00
|
|
|
void CNextion::clearFusionInt()
|
2016-04-06 18:53:25 +00:00
|
|
|
{
|
|
|
|
sendCommand("t0.txt=\"Listening\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(81U);
|
2016-04-06 18:53:25 +00:00
|
|
|
sendCommand("t1.txt=\"\"");
|
2016-05-21 11:52:56 +00:00
|
|
|
sendCommand("t2.txt=\"\"");
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand("t3.txt=\"\"");
|
2017-02-12 18:37:00 +00:00
|
|
|
sendCommand("t4.txt=\"\"");
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2016-09-12 19:23:50 +00:00
|
|
|
void CNextion::writeP25Int(const char* source, bool group, unsigned int dest, const char* type)
|
2016-09-12 17:12:32 +00:00
|
|
|
{
|
|
|
|
assert(source != NULL);
|
|
|
|
assert(type != NULL);
|
|
|
|
|
2017-12-10 20:50:47 +00:00
|
|
|
if (m_mode != MODE_P25) {
|
2016-09-12 17:12:32 +00:00
|
|
|
sendCommand("page P25");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(5U);
|
2017-12-10 20:50:47 +00:00
|
|
|
}
|
2016-09-12 17:12:32 +00:00
|
|
|
|
|
|
|
char text[30U];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(text, "dim=%u", m_brightness);
|
|
|
|
sendCommand(text);
|
|
|
|
}
|
2016-09-12 17:12:32 +00:00
|
|
|
|
|
|
|
::sprintf(text, "t0.txt=\"%s %.10s\"", type, source);
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(102U);
|
2016-09-12 17:12:32 +00:00
|
|
|
|
2016-09-12 19:23:50 +00:00
|
|
|
::sprintf(text, "t1.txt=\"%s%u\"", group ? "TG" : "", dest);
|
2016-09-12 17:12:32 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(103U);
|
2016-09-12 17:12:32 +00:00
|
|
|
|
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
|
|
|
m_mode = MODE_P25;
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
|
|
|
m_berAccum1 = 0.0F;
|
2017-02-13 08:20:40 +00:00
|
|
|
m_rssiCount1 = 0U;
|
|
|
|
m_berCount1 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::writeP25RSSIInt(unsigned char rssi)
|
|
|
|
{
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 += rssi;
|
|
|
|
m_rssiCount1++;
|
|
|
|
|
|
|
|
if (m_rssiCount1 == P25_RSSI_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t2.txt=\"-%udBm\"", m_rssiAccum1 / P25_RSSI_COUNT);
|
2017-01-05 19:44:52 +00:00
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(104U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_rssiCount1 = 0U;
|
2017-01-05 19:44:52 +00:00
|
|
|
}
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
2017-01-05 19:44:52 +00:00
|
|
|
|
2017-02-12 18:37:00 +00:00
|
|
|
void CNextion::writeP25BERInt(float ber)
|
|
|
|
{
|
|
|
|
m_berAccum1 += ber;
|
|
|
|
m_berCount1++;
|
|
|
|
|
|
|
|
if (m_berCount1 == P25_BER_COUNT) {
|
2018-02-06 07:11:00 +00:00
|
|
|
char text[25U];
|
2017-02-12 18:37:00 +00:00
|
|
|
::sprintf(text, "t3.txt=\"%.1f%%\"", m_berAccum1 / float(P25_BER_COUNT));
|
|
|
|
sendCommand(text);
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(105U);
|
2017-02-12 18:37:00 +00:00
|
|
|
m_berAccum1 = 0.0F;
|
2018-02-05 19:07:23 +00:00
|
|
|
m_berCount1 = 0U;
|
2017-02-12 18:37:00 +00:00
|
|
|
}
|
2016-09-12 17:12:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::clearP25Int()
|
|
|
|
{
|
|
|
|
sendCommand("t0.txt=\"Listening\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(101U);
|
2016-09-12 17:12:32 +00:00
|
|
|
sendCommand("t1.txt=\"\"");
|
|
|
|
sendCommand("t2.txt=\"\"");
|
2017-02-12 18:37:00 +00:00
|
|
|
sendCommand("t3.txt=\"\"");
|
2016-09-12 17:12:32 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 19:04:00 +00:00
|
|
|
void CNextion::writeNXDNInt(const char* source, bool group, unsigned int dest, const char* type)
|
|
|
|
{
|
|
|
|
assert(source != NULL);
|
|
|
|
assert(type != NULL);
|
|
|
|
|
|
|
|
if (m_mode != MODE_NXDN) {
|
|
|
|
sendCommand("page NXDN");
|
2018-07-28 08:57:35 +00:00
|
|
|
sendCommandAction(6U);
|
2018-01-17 19:04:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
char text[30U];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(text, "dim=%u", m_brightness);
|
|
|
|
sendCommand(text);
|
|
|
|
}
|
2018-01-17 19:04:00 +00:00
|
|
|
|
|
|
|
::sprintf(text, "t0.txt=\"%s %.10s\"", type, source);
|
|
|
|
sendCommand(text);
|
2018-03-18 15:32:27 +00:00
|
|
|
sendCommandAction(122U);
|
2018-01-17 19:04:00 +00:00
|
|
|
|
|
|
|
::sprintf(text, "t1.txt=\"%s%u\"", group ? "TG" : "", dest);
|
|
|
|
sendCommand(text);
|
2018-03-18 15:32:27 +00:00
|
|
|
sendCommandAction(123U);
|
2018-01-17 19:04:00 +00:00
|
|
|
|
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
|
|
|
m_mode = MODE_NXDN;
|
|
|
|
m_rssiAccum1 = 0U;
|
|
|
|
m_berAccum1 = 0.0F;
|
|
|
|
m_rssiCount1 = 0U;
|
|
|
|
m_berCount1 = 0U;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::writeNXDNRSSIInt(unsigned char rssi)
|
|
|
|
{
|
|
|
|
m_rssiAccum1 += rssi;
|
|
|
|
m_rssiCount1++;
|
|
|
|
|
|
|
|
if (m_rssiCount1 == NXDN_RSSI_COUNT) {
|
2018-02-06 07:14:26 +00:00
|
|
|
char text[25U];
|
2018-01-17 19:04:00 +00:00
|
|
|
::sprintf(text, "t2.txt=\"-%udBm\"", m_rssiAccum1 / NXDN_RSSI_COUNT);
|
|
|
|
sendCommand(text);
|
2018-03-18 15:32:27 +00:00
|
|
|
sendCommandAction(124U);
|
2018-01-17 19:04:00 +00:00
|
|
|
m_rssiAccum1 = 0U;
|
2018-02-05 20:05:39 +00:00
|
|
|
m_rssiCount1 = 0U;
|
2018-01-17 19:04:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::writeNXDNBERInt(float ber)
|
|
|
|
{
|
|
|
|
m_berAccum1 += ber;
|
|
|
|
m_berCount1++;
|
|
|
|
|
|
|
|
if (m_berCount1 == NXDN_BER_COUNT) {
|
2018-02-06 07:14:26 +00:00
|
|
|
char text[25U];
|
2018-01-17 19:04:00 +00:00
|
|
|
::sprintf(text, "t3.txt=\"%.1f%%\"", m_berAccum1 / float(NXDN_BER_COUNT));
|
|
|
|
sendCommand(text);
|
2018-03-18 15:32:27 +00:00
|
|
|
sendCommandAction(125U);
|
2018-01-17 19:04:00 +00:00
|
|
|
m_berAccum1 = 0.0F;
|
2018-02-05 20:05:39 +00:00
|
|
|
m_berCount1 = 0U;
|
2018-01-17 19:04:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::clearNXDNInt()
|
|
|
|
{
|
|
|
|
sendCommand("t0.txt=\"Listening\"");
|
2018-03-18 15:32:27 +00:00
|
|
|
sendCommandAction(121U);
|
2018-01-17 19:04:00 +00:00
|
|
|
sendCommand("t1.txt=\"\"");
|
|
|
|
sendCommand("t2.txt=\"\"");
|
|
|
|
sendCommand("t3.txt=\"\"");
|
|
|
|
}
|
|
|
|
|
2018-06-11 20:30:49 +00:00
|
|
|
void CNextion::writePOCSAGInt(uint32_t ric, const std::string& message)
|
|
|
|
{
|
|
|
|
if (m_mode != MODE_POCSAG) {
|
|
|
|
sendCommand("page POCSAG");
|
2018-07-28 08:57:35 +00:00
|
|
|
sendCommandAction(7U);
|
2018-06-11 20:30:49 +00:00
|
|
|
}
|
|
|
|
|
2018-06-12 19:02:56 +00:00
|
|
|
char text[200U];
|
2018-09-13 18:35:12 +00:00
|
|
|
if (m_brightness>0) {
|
|
|
|
::sprintf(text, "dim=%u", m_brightness);
|
|
|
|
sendCommand(text);
|
|
|
|
}
|
2018-06-11 20:30:49 +00:00
|
|
|
|
|
|
|
::sprintf(text, "t0.txt=\"RIC: %u\"", ric);
|
|
|
|
sendCommand(text);
|
|
|
|
sendCommandAction(132U);
|
|
|
|
|
2018-06-20 18:58:35 +00:00
|
|
|
::sprintf(text, "t1.txt=\"%s\"", message.c_str());
|
2018-06-11 20:30:49 +00:00
|
|
|
sendCommand(text);
|
|
|
|
sendCommandAction(133U);
|
|
|
|
|
|
|
|
m_clockDisplayTimer.stop();
|
|
|
|
|
|
|
|
m_mode = MODE_POCSAG;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::clearPOCSAGInt()
|
|
|
|
{
|
2018-06-12 20:14:33 +00:00
|
|
|
sendCommand("t0.txt=\"Waiting\"");
|
2018-06-11 20:30:49 +00:00
|
|
|
sendCommandAction(134U);
|
2018-06-12 20:14:33 +00:00
|
|
|
sendCommand("t1.txt=\"\"");
|
2018-06-11 20:30:49 +00:00
|
|
|
}
|
|
|
|
|
2016-09-15 08:58:55 +00:00
|
|
|
void CNextion::writeCWInt()
|
2016-09-15 08:44:21 +00:00
|
|
|
{
|
2016-09-15 14:28:56 +00:00
|
|
|
sendCommand("t1.txt=\"Sending CW Ident\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(12U);
|
2016-09-15 14:57:10 +00:00
|
|
|
m_clockDisplayTimer.start();
|
2016-09-15 13:17:51 +00:00
|
|
|
|
|
|
|
m_mode = MODE_CW;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CNextion::clearCWInt()
|
|
|
|
{
|
2016-09-15 14:27:06 +00:00
|
|
|
sendCommand("t1.txt=\"MMDVM IDLE\"");
|
2017-12-28 09:01:52 +00:00
|
|
|
sendCommandAction(11U);
|
2016-09-15 08:44:21 +00:00
|
|
|
}
|
|
|
|
|
2016-06-01 10:55:24 +00:00
|
|
|
void CNextion::clockInt(unsigned int ms)
|
|
|
|
{
|
|
|
|
// Update the clock display in IDLE mode every 400ms
|
|
|
|
m_clockDisplayTimer.clock(ms);
|
2016-09-15 14:57:10 +00:00
|
|
|
if (m_displayClock && (m_mode == MODE_IDLE || m_mode == MODE_CW) && m_clockDisplayTimer.isRunning() && m_clockDisplayTimer.hasExpired()) {
|
2016-06-01 10:55:24 +00:00
|
|
|
time_t currentTime;
|
|
|
|
struct tm *Time;
|
|
|
|
::time(¤tTime); // Get the current time
|
|
|
|
|
|
|
|
if (m_utc)
|
|
|
|
Time = ::gmtime(¤tTime);
|
|
|
|
else
|
|
|
|
Time = ::localtime(¤tTime);
|
|
|
|
|
2016-07-02 23:14:31 +00:00
|
|
|
setlocale(LC_TIME,"");
|
2016-06-01 10:55:24 +00:00
|
|
|
char text[50U];
|
2016-06-24 15:08:28 +00:00
|
|
|
strftime(text, 50, "t2.txt=\"%x %X\"", Time);
|
2016-06-01 10:55:24 +00:00
|
|
|
sendCommand(text);
|
|
|
|
|
|
|
|
m_clockDisplayTimer.start(); // restart the clock display timer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
void CNextion::close()
|
|
|
|
{
|
2016-10-06 17:38:16 +00:00
|
|
|
m_serial->close();
|
|
|
|
delete m_serial;
|
2016-04-06 18:53:25 +00:00
|
|
|
}
|
|
|
|
|
2017-12-28 09:01:52 +00:00
|
|
|
void CNextion::sendCommandAction(unsigned int status)
|
2017-12-05 19:50:56 +00:00
|
|
|
{
|
2020-06-14 07:00:20 +00:00
|
|
|
if (!(m_screenLayout & LAYOUT_DIY))
|
2018-09-05 20:12:12 +00:00
|
|
|
return;
|
2017-12-05 19:50:56 +00:00
|
|
|
|
|
|
|
char text[30U];
|
|
|
|
::sprintf(text, "MMDVM.status.val=%d", status);
|
|
|
|
sendCommand(text);
|
|
|
|
sendCommand("click S0,1");
|
|
|
|
}
|
|
|
|
|
2016-04-06 18:53:25 +00:00
|
|
|
void CNextion::sendCommand(const char* command)
|
|
|
|
{
|
|
|
|
assert(command != NULL);
|
|
|
|
|
2018-01-09 07:43:22 +00:00
|
|
|
m_serial->write((unsigned char*)command, (unsigned int)::strlen(command));
|
2016-10-06 17:38:16 +00:00
|
|
|
m_serial->write((unsigned char*)"\xFF\xFF\xFF", 3U);
|
2018-09-05 20:12:12 +00:00
|
|
|
// Since we just firing commands at the display, and not listening for the response,
|
|
|
|
// we must add a bit of a delay to allow the display to process the commands, else some are getting mangled.
|
|
|
|
// 10 ms is just a guess, but seems to be sufficient.
|
|
|
|
CThread::sleep(10U);
|
2020-06-14 07:00:20 +00:00
|
|
|
}
|