2016-04-08 12:14:50 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2016-04-21 21:53:16 -04:00
|
|
|
// Copyright (C) 2016 F4EXB //
|
2016-04-08 12:14:50 -04:00
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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 as version 3 of the License, or //
|
|
|
|
// //
|
|
|
|
// 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 V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QDebug>
|
|
|
|
#include "ui_dsddemodgui.h"
|
|
|
|
#include "dsp/threadedsamplesink.h"
|
|
|
|
#include "dsp/channelizer.h"
|
|
|
|
#include "dsp/scopevis.h"
|
2016-04-07 13:54:26 -04:00
|
|
|
#include "gui/glscope.h"
|
2016-04-07 07:05:53 -04:00
|
|
|
#include "plugin/pluginapi.h"
|
2016-05-16 04:05:09 -04:00
|
|
|
#include "device/deviceapi.h"
|
2016-04-07 07:05:53 -04:00
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
#include "util/db.h"
|
|
|
|
#include "gui/basicchannelsettingswidget.h"
|
|
|
|
#include "dsp/dspengine.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
2016-04-07 13:54:26 -04:00
|
|
|
#include "dsddemod.h"
|
|
|
|
#include "dsddemodgui.h"
|
|
|
|
|
2016-05-16 13:37:53 -04:00
|
|
|
const QString DSDDemodGUI::m_channelID = "sdrangel.channel.dsddemod";
|
|
|
|
|
2016-08-06 05:03:05 -04:00
|
|
|
unsigned int DSDDemodBaudRates::m_rates[] = {2400, 4800};
|
|
|
|
unsigned int DSDDemodBaudRates::m_nb_rates = 2;
|
|
|
|
unsigned int DSDDemodBaudRates::m_defaultRateIndex = 1; // 4800 bauds
|
|
|
|
|
2016-08-11 20:28:54 -04:00
|
|
|
char DSDDemodGUI::m_dpmrFrameTypes[][3] = {
|
2016-08-10 19:09:17 -04:00
|
|
|
"--", // no frame sync
|
2016-08-11 20:28:54 -04:00
|
|
|
"XS", // no frame - extensive search of FS2
|
2016-08-10 19:09:17 -04:00
|
|
|
"HD", // header frame
|
|
|
|
"PY", // payload super frame not categorized yet
|
|
|
|
"VO", // voice super frame
|
2016-08-14 20:51:51 -04:00
|
|
|
"VS", // voice super frame with slow data (SLD)
|
|
|
|
"VD", // voice and data superframe
|
2016-08-10 19:09:17 -04:00
|
|
|
"D1", // data type 1 super frame
|
|
|
|
"D2", // data type 2 super frame
|
|
|
|
"EN", // end frame
|
|
|
|
};
|
2016-08-06 05:03:05 -04:00
|
|
|
|
2016-05-16 04:05:09 -04:00
|
|
|
DSDDemodGUI* DSDDemodGUI::create(PluginAPI* pluginAPI, DeviceAPI *deviceAPI)
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
2016-05-16 04:05:09 -04:00
|
|
|
DSDDemodGUI* gui = new DSDDemodGUI(pluginAPI, deviceAPI);
|
2016-04-07 07:05:53 -04:00
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::destroy()
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::setName(const QString& name)
|
|
|
|
{
|
|
|
|
setObjectName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString DSDDemodGUI::getName() const
|
|
|
|
{
|
|
|
|
return objectName();
|
|
|
|
}
|
|
|
|
|
|
|
|
qint64 DSDDemodGUI::getCenterFrequency() const
|
|
|
|
{
|
|
|
|
return m_channelMarker.getCenterFrequency();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::setCenterFrequency(qint64 centerFrequency)
|
|
|
|
{
|
|
|
|
m_channelMarker.setCenterFrequency(centerFrequency);
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::resetToDefaults()
|
|
|
|
{
|
|
|
|
blockApplySettings(true);
|
|
|
|
|
|
|
|
ui->rfBW->setValue(100); // x100 Hz
|
|
|
|
ui->demodGain->setValue(100); // 100ths
|
|
|
|
ui->fmDeviation->setValue(50); // x100 Hz
|
|
|
|
ui->volume->setValue(20); // /10.0
|
2016-08-06 05:03:05 -04:00
|
|
|
ui->baudRate->setCurrentIndex(DSDDemodBaudRates::getDefaultRateIndex());
|
2016-04-07 07:05:53 -04:00
|
|
|
ui->squelchGate->setValue(5);
|
|
|
|
ui->squelch->setValue(-40);
|
|
|
|
ui->deltaFrequency->setValue(0);
|
|
|
|
|
|
|
|
blockApplySettings(false);
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray DSDDemodGUI::serialize() const
|
|
|
|
{
|
|
|
|
SimpleSerializer s(1);
|
|
|
|
s.writeS32(1, m_channelMarker.getCenterFrequency());
|
|
|
|
s.writeS32(2, ui->rfBW->value());
|
|
|
|
s.writeS32(3, ui->demodGain->value());
|
|
|
|
s.writeS32(4, ui->fmDeviation->value());
|
|
|
|
s.writeS32(5, ui->squelch->value());
|
|
|
|
s.writeU32(7, m_channelMarker.getColor().rgb());
|
|
|
|
s.writeS32(8, ui->squelchGate->value());
|
|
|
|
s.writeS32(9, ui->volume->value());
|
2016-04-07 13:54:26 -04:00
|
|
|
s.writeBlob(10, ui->scopeGUI->serialize());
|
2016-08-06 05:03:05 -04:00
|
|
|
s.writeS32(11, ui->baudRate->currentIndex());
|
2016-04-07 07:05:53 -04:00
|
|
|
return s.final();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DSDDemodGUI::deserialize(const QByteArray& data)
|
|
|
|
{
|
|
|
|
SimpleDeserializer d(data);
|
|
|
|
|
|
|
|
if (!d.isValid())
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d.getVersion() == 1)
|
|
|
|
{
|
|
|
|
QByteArray bytetmp;
|
|
|
|
quint32 u32tmp;
|
|
|
|
qint32 tmp;
|
|
|
|
bool boolTmp;
|
|
|
|
|
|
|
|
blockApplySettings(true);
|
|
|
|
m_channelMarker.blockSignals(true);
|
|
|
|
|
|
|
|
d.readS32(1, &tmp, 0);
|
|
|
|
m_channelMarker.setCenterFrequency(tmp);
|
|
|
|
d.readS32(2, &tmp, 4);
|
|
|
|
ui->rfBW->setValue(tmp);
|
|
|
|
d.readS32(3, &tmp, 3);
|
|
|
|
ui->demodGain->setValue(tmp);
|
|
|
|
d.readS32(4, &tmp, 20);
|
|
|
|
ui->fmDeviation->setValue(tmp);
|
|
|
|
d.readS32(5, &tmp, -40);
|
|
|
|
ui->squelch->setValue(tmp);
|
|
|
|
|
|
|
|
if(d.readU32(7, &u32tmp))
|
|
|
|
{
|
|
|
|
m_channelMarker.setColor(u32tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
d.readS32(8, &tmp, 5);
|
|
|
|
ui->squelchGate->setValue(tmp);
|
|
|
|
d.readS32(9, &tmp, 20);
|
|
|
|
ui->volume->setValue(tmp);
|
2016-04-07 13:54:26 -04:00
|
|
|
d.readBlob(10, &bytetmp);
|
|
|
|
ui->scopeGUI->deserialize(bytetmp);
|
2016-08-06 05:03:05 -04:00
|
|
|
d.readS32(11, &tmp, 20);
|
|
|
|
ui->baudRate->setCurrentIndex(tmp);
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
blockApplySettings(false);
|
|
|
|
m_channelMarker.blockSignals(false);
|
|
|
|
|
|
|
|
applySettings();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DSDDemodGUI::handleMessage(const Message& message)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::viewChanged()
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_deltaMinus_toggled(bool minus)
|
|
|
|
{
|
|
|
|
int deltaFrequency = m_channelMarker.getCenterFrequency();
|
|
|
|
bool minusDelta = (deltaFrequency < 0);
|
|
|
|
|
|
|
|
if (minus ^ minusDelta) // sign change
|
|
|
|
{
|
|
|
|
m_channelMarker.setCenterFrequency(-deltaFrequency);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_deltaFrequency_changed(quint64 value)
|
|
|
|
{
|
|
|
|
if (ui->deltaMinus->isChecked())
|
|
|
|
{
|
|
|
|
m_channelMarker.setCenterFrequency(-value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_channelMarker.setCenterFrequency(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_rfBW_valueChanged(int value)
|
|
|
|
{
|
|
|
|
qDebug() << "DSDDemodGUI::on_rfBW_valueChanged" << value * 100;
|
|
|
|
m_channelMarker.setBandwidth(value * 100);
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_demodGain_valueChanged(int value)
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_fmDeviation_valueChanged(int value)
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_volume_valueChanged(int value)
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2016-08-06 05:03:05 -04:00
|
|
|
void DSDDemodGUI::on_baudRate_currentIndexChanged(int index)
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
void DSDDemodGUI::on_squelchGate_valueChanged(int value)
|
|
|
|
{
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_squelch_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->squelchText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::on_audioMute_toggled(bool checked)
|
|
|
|
{
|
|
|
|
m_audioMute = checked;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::onWidgetRolled(QWidget* widget, bool rollDown)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
if((widget == ui->spectrumContainer) && (DSDDemodGUI != NULL))
|
|
|
|
m_dsdDemod->setSpectrum(m_threadedSampleSink->getMessageQueue(), rollDown);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::onMenuDoubleClicked()
|
|
|
|
{
|
|
|
|
if (!m_basicSettingsShown)
|
|
|
|
{
|
|
|
|
m_basicSettingsShown = true;
|
|
|
|
BasicChannelSettingsWidget* bcsw = new BasicChannelSettingsWidget(&m_channelMarker, this);
|
|
|
|
bcsw->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-16 04:05:09 -04:00
|
|
|
DSDDemodGUI::DSDDemodGUI(PluginAPI* pluginAPI, DeviceAPI *deviceAPI, QWidget* parent) :
|
2016-04-07 07:05:53 -04:00
|
|
|
RollupWidget(parent),
|
|
|
|
ui(new Ui::DSDDemodGUI),
|
|
|
|
m_pluginAPI(pluginAPI),
|
2016-05-16 04:05:09 -04:00
|
|
|
m_deviceAPI(deviceAPI),
|
2016-04-07 07:05:53 -04:00
|
|
|
m_channelMarker(this),
|
|
|
|
m_basicSettingsShown(false),
|
|
|
|
m_doApplySettings(true),
|
2016-04-23 00:27:28 -04:00
|
|
|
m_signalFormat(signalFormatNone),
|
2016-04-07 07:05:53 -04:00
|
|
|
m_squelchOpen(false),
|
2016-04-21 21:53:16 -04:00
|
|
|
m_channelPowerDbAvg(20,0),
|
|
|
|
m_tickCount(0)
|
2016-04-07 07:05:53 -04:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
|
|
|
|
connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
|
|
|
|
connect(this, SIGNAL(menuDoubleClickEvent()), this, SLOT(onMenuDoubleClicked()));
|
|
|
|
|
|
|
|
m_scopeVis = new ScopeVis(ui->glScope);
|
|
|
|
m_dsdDemod = new DSDDemod(m_scopeVis);
|
|
|
|
m_dsdDemod->registerGUI(this);
|
|
|
|
|
2016-04-07 13:54:26 -04:00
|
|
|
ui->glScope->setSampleRate(48000);
|
|
|
|
m_scopeVis->setSampleRate(48000);
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
ui->glScope->connectTimer(m_pluginAPI->getMainWindow()->getMasterTimer());
|
|
|
|
|
|
|
|
connect(&m_pluginAPI->getMainWindow()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick()));
|
|
|
|
|
|
|
|
ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
|
|
|
|
|
|
|
m_channelizer = new Channelizer(m_dsdDemod);
|
|
|
|
m_threadedChannelizer = new ThreadedSampleSink(m_channelizer, this);
|
2016-05-16 04:05:09 -04:00
|
|
|
m_deviceAPI->addThreadedSink(m_threadedChannelizer);
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
//m_channelMarker = new ChannelMarker(this);
|
|
|
|
m_channelMarker.setColor(Qt::cyan);
|
|
|
|
m_channelMarker.setBandwidth(10000);
|
|
|
|
m_channelMarker.setCenterFrequency(0);
|
|
|
|
m_channelMarker.setVisible(true);
|
|
|
|
|
|
|
|
connect(&m_channelMarker, SIGNAL(changed()), this, SLOT(viewChanged()));
|
|
|
|
|
2016-05-16 13:37:53 -04:00
|
|
|
m_deviceAPI->registerChannelInstance(m_channelID, this);
|
2016-05-16 04:05:09 -04:00
|
|
|
m_deviceAPI->addChannelMarker(&m_channelMarker);
|
|
|
|
m_deviceAPI->addRollupWidget(this);
|
2016-04-07 07:05:53 -04:00
|
|
|
|
|
|
|
ui->scopeGUI->setBuddies(m_scopeVis->getInputMessageQueue(), m_scopeVis, ui->glScope);
|
|
|
|
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
DSDDemodGUI::~DSDDemodGUI()
|
|
|
|
{
|
2016-05-16 13:37:53 -04:00
|
|
|
m_deviceAPI->removeChannelInstance(this);
|
2016-05-16 04:05:09 -04:00
|
|
|
m_deviceAPI->removeThreadedSink(m_threadedChannelizer);
|
2016-04-07 07:05:53 -04:00
|
|
|
delete m_threadedChannelizer;
|
|
|
|
delete m_channelizer;
|
|
|
|
delete m_dsdDemod;
|
|
|
|
//delete m_channelMarker;
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::applySettings()
|
|
|
|
{
|
|
|
|
if (m_doApplySettings)
|
|
|
|
{
|
|
|
|
qDebug() << "DSDDemodGUI::applySettings";
|
|
|
|
|
|
|
|
setTitleColor(m_channelMarker.getColor());
|
|
|
|
|
|
|
|
m_channelizer->configure(m_channelizer->getInputMessageQueue(),
|
|
|
|
48000,
|
|
|
|
m_channelMarker.getCenterFrequency());
|
|
|
|
|
|
|
|
ui->deltaFrequency->setValue(abs(m_channelMarker.getCenterFrequency()));
|
|
|
|
ui->deltaMinus->setChecked(m_channelMarker.getCenterFrequency() < 0);
|
|
|
|
ui->rfBWText->setText(QString("%1k").arg(ui->rfBW->value() / 10.0, 0, 'f', 1));
|
|
|
|
ui->demodGainText->setText(QString("%1").arg(ui->demodGain->value() / 100.0, 0, 'f', 2));
|
|
|
|
ui->fmDeviationText->setText(QString("%1k").arg(ui->fmDeviation->value() / 10.0, 0, 'f', 1));
|
|
|
|
ui->squelchGateText->setText(QString("%1").arg(ui->squelchGate->value() * 10.0, 0, 'f', 0));
|
|
|
|
ui->volumeText->setText(QString("%1").arg(ui->volume->value() / 10.0, 0, 'f', 1));
|
|
|
|
|
|
|
|
m_dsdDemod->configure(m_dsdDemod->getInputMessageQueue(),
|
|
|
|
ui->rfBW->value(),
|
|
|
|
ui->demodGain->value(),
|
|
|
|
ui->fmDeviation->value(),
|
|
|
|
ui->volume->value(),
|
2016-08-06 05:03:05 -04:00
|
|
|
DSDDemodBaudRates::getRate(ui->baudRate->currentIndex()),
|
2016-04-07 07:05:53 -04:00
|
|
|
ui->squelchGate->value(), // in 10ths of ms
|
|
|
|
ui->squelch->value(),
|
|
|
|
ui->audioMute->isChecked());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::leaveEvent(QEvent*)
|
|
|
|
{
|
|
|
|
blockApplySettings(true);
|
|
|
|
m_channelMarker.setHighlighted(false);
|
|
|
|
blockApplySettings(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::enterEvent(QEvent*)
|
|
|
|
{
|
|
|
|
blockApplySettings(true);
|
|
|
|
m_channelMarker.setHighlighted(true);
|
|
|
|
blockApplySettings(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DSDDemodGUI::blockApplySettings(bool block)
|
|
|
|
{
|
|
|
|
m_doApplySettings = !block;
|
|
|
|
}
|
|
|
|
|
2016-04-23 00:27:28 -04:00
|
|
|
void DSDDemodGUI::formatStatusText()
|
|
|
|
{
|
|
|
|
switch (m_dsdDemod->getDecoder().getSyncType())
|
|
|
|
{
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDMRDataN:
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDMRDataP:
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDMRVoiceN:
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDMRVoiceP:
|
|
|
|
if (m_signalFormat != signalFormatDMR)
|
|
|
|
{
|
|
|
|
memcpy(m_formatStatusText, "Station: ", 9);
|
|
|
|
memcpy(&m_formatStatusText[12], "TDMA: ", 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (m_dsdDemod->getDecoder().getStationType())
|
|
|
|
{
|
|
|
|
case DSDcc::DSDDecoder::DSDBaseStation:
|
|
|
|
memcpy(&m_formatStatusText[9], "BS ", 3);
|
|
|
|
break;
|
|
|
|
case DSDcc::DSDDecoder::DSDMobileStation:
|
|
|
|
memcpy(&m_formatStatusText[9], "MS ", 3);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
memcpy(&m_formatStatusText[9], "NA ", 3);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(&m_formatStatusText[18], m_dsdDemod->getDecoder().getSlot0Text(), 7);
|
|
|
|
m_formatStatusText[25] = ' ';
|
|
|
|
memcpy(&m_formatStatusText[26], m_dsdDemod->getDecoder().getSlot1Text(), 7);
|
2016-05-02 20:15:10 -04:00
|
|
|
sprintf(&m_formatStatusText[33], " CC: %02d", m_dsdDemod->getDecoder().getColorCode());
|
2016-04-23 00:27:28 -04:00
|
|
|
m_signalFormat = signalFormatDMR;
|
|
|
|
break;
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDStarHeaderN:
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDStarHeaderP:
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDStarN:
|
|
|
|
case DSDcc::DSDDecoder::DSDSyncDStarP:
|
|
|
|
if (m_signalFormat != signalFormatDStar)
|
|
|
|
{
|
|
|
|
strcpy(m_formatStatusText, "RPT1: ________ RPT2: ________ YOUR: ________ MY: ________/____");
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const std::string& rpt1 = m_dsdDemod->getDecoder().getDStarDecoder().getRpt1();
|
|
|
|
const std::string& rpt2 = m_dsdDemod->getDecoder().getDStarDecoder().getRpt2();
|
|
|
|
const std::string& mySign = m_dsdDemod->getDecoder().getDStarDecoder().getMySign();
|
|
|
|
const std::string& yrSign = m_dsdDemod->getDecoder().getDStarDecoder().getYourSign();
|
|
|
|
|
|
|
|
if (rpt1.length() > 0) { // 0 or 8
|
|
|
|
memcpy(&m_formatStatusText[6], rpt1.c_str(), 8);
|
|
|
|
}
|
|
|
|
if (rpt2.length() > 0) { // 0 or 8
|
|
|
|
memcpy(&m_formatStatusText[21], rpt2.c_str(), 8);
|
|
|
|
}
|
|
|
|
if (yrSign.length() > 0) { // 0 or 8
|
|
|
|
memcpy(&m_formatStatusText[36], yrSign.c_str(), 8);
|
|
|
|
}
|
|
|
|
if (mySign.length() > 0) { // 0 or 13
|
|
|
|
memcpy(&m_formatStatusText[49], mySign.c_str(), 13);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-23 05:31:40 -04:00
|
|
|
m_formatStatusText[62] = '\0';
|
2016-04-23 00:27:28 -04:00
|
|
|
m_signalFormat = signalFormatDStar;
|
|
|
|
break;
|
2016-08-07 19:04:56 -04:00
|
|
|
case DSDcc::DSDDecoder::DSDSyncDPMR:
|
2016-08-15 04:36:32 -04:00
|
|
|
sprintf(m_formatStatusText, "%s CC: %04d OI: %06X CI: %06X",
|
2016-08-11 20:28:54 -04:00
|
|
|
m_dpmrFrameTypes[(int) m_dsdDemod->getDecoder().getDPMRDecoder().getFrameType()],
|
2016-08-15 04:36:32 -04:00
|
|
|
m_dsdDemod->getDecoder().getDPMRDecoder().getColorCode(),
|
|
|
|
m_dsdDemod->getDecoder().getDPMRDecoder().getOwnId(),
|
|
|
|
m_dsdDemod->getDecoder().getDPMRDecoder().getCalledId());
|
2016-08-07 19:04:56 -04:00
|
|
|
m_signalFormat = signalFormatDPMR;
|
|
|
|
break;
|
2016-04-23 00:27:28 -04:00
|
|
|
default:
|
|
|
|
m_signalFormat = signalFormatNone;
|
|
|
|
m_formatStatusText[0] = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-04-23 05:31:40 -04:00
|
|
|
m_formatStatusText[64] = '\0'; // guard
|
2016-04-23 00:27:28 -04:00
|
|
|
}
|
|
|
|
|
2016-04-07 07:05:53 -04:00
|
|
|
void DSDDemodGUI::tick()
|
|
|
|
{
|
2016-04-08 22:02:18 -04:00
|
|
|
Real powDb = CalcDb::dbPower(m_dsdDemod->getMagSq());
|
2016-04-07 07:05:53 -04:00
|
|
|
m_channelPowerDbAvg.feed(powDb);
|
|
|
|
ui->channelPower->setText(QString::number(m_channelPowerDbAvg.average(), 'f', 1));
|
|
|
|
bool squelchOpen = m_dsdDemod->getSquelchOpen();
|
|
|
|
|
|
|
|
if (squelchOpen != m_squelchOpen)
|
|
|
|
{
|
|
|
|
m_squelchOpen = squelchOpen;
|
|
|
|
|
|
|
|
if (m_squelchOpen) {
|
|
|
|
ui->audioMute->setStyleSheet("QToolButton { background-color : green; }");
|
|
|
|
} else {
|
|
|
|
ui->audioMute->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
}
|
|
|
|
}
|
2016-04-21 21:53:16 -04:00
|
|
|
|
|
|
|
// "slow" updates
|
|
|
|
|
|
|
|
if (m_tickCount < 10)
|
|
|
|
{
|
|
|
|
m_tickCount++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->inLevelText->setText(QString::number(m_dsdDemod->getDecoder().getInLevel()));
|
|
|
|
ui->syncText->setText(QString(m_dsdDemod->getDecoder().getFrameTypeText()));
|
|
|
|
ui->modulationText->setText(QString(m_dsdDemod->getDecoder().getModulationText()));
|
2016-04-23 00:27:28 -04:00
|
|
|
|
|
|
|
formatStatusText();
|
|
|
|
ui->formatStatusText->setText(QString(m_formatStatusText));
|
|
|
|
|
2016-04-23 05:31:40 -04:00
|
|
|
if (m_formatStatusText[0] == '\0') {
|
|
|
|
ui->formatStatusText->setStyleSheet("QLabel { background:rgb(53,53,53); }"); // turn off background
|
|
|
|
} else {
|
|
|
|
ui->formatStatusText->setStyleSheet("QLabel { background:rgb(37,53,39); }"); // turn on background
|
|
|
|
}
|
|
|
|
|
2016-04-21 21:53:16 -04:00
|
|
|
m_tickCount = 0;
|
|
|
|
}
|
2016-04-07 07:05:53 -04:00
|
|
|
}
|
2016-08-06 05:03:05 -04:00
|
|
|
|
|
|
|
unsigned int DSDDemodBaudRates::getRate(unsigned int rate_index)
|
|
|
|
{
|
|
|
|
if (rate_index < m_nb_rates)
|
|
|
|
{
|
|
|
|
return m_rates[rate_index];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return m_rates[m_defaultRateIndex];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int DSDDemodBaudRates::getRateIndex(unsigned int rate)
|
|
|
|
{
|
|
|
|
for (unsigned int i=0; i < m_nb_rates; i++)
|
|
|
|
{
|
|
|
|
if (rate == m_rates[i])
|
|
|
|
{
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_defaultRateIndex;
|
|
|
|
}
|