mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
614 lines
20 KiB
C++
614 lines
20 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2016 F4EXB //
|
|
// 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 //
|
|
// (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 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/>. //
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "dsddemodgui.h"
|
|
|
|
#include "device/deviceuiset.h"
|
|
|
|
#include "ui_dsddemodgui.h"
|
|
#include "dsp/scopevisxy.h"
|
|
#include "plugin/pluginapi.h"
|
|
#include "util/simpleserializer.h"
|
|
#include "util/db.h"
|
|
#include "gui/basicchannelsettingsdialog.h"
|
|
#include "gui/devicestreamselectiondialog.h"
|
|
#include "gui/crightclickenabler.h"
|
|
#include "gui/audioselectdialog.h"
|
|
#include "dsp/dspengine.h"
|
|
#include "maincore.h"
|
|
|
|
#include "dsddemodbaudrates.h"
|
|
#include "dsddemod.h"
|
|
|
|
#include <QDockWidget>
|
|
#include <QMainWindow>
|
|
#include <QDebug>
|
|
|
|
#include <complex>
|
|
|
|
DSDDemodGUI* DSDDemodGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
|
{
|
|
DSDDemodGUI* gui = new DSDDemodGUI(pluginAPI, deviceUISet, rxChannel);
|
|
return gui;
|
|
}
|
|
|
|
void DSDDemodGUI::destroy()
|
|
{
|
|
delete this;
|
|
}
|
|
|
|
void DSDDemodGUI::resetToDefaults()
|
|
{
|
|
m_settings.resetToDefaults();
|
|
blockApplySettings(true);
|
|
displaySettings();
|
|
blockApplySettings(false);
|
|
applySettings();
|
|
}
|
|
|
|
QByteArray DSDDemodGUI::serialize() const
|
|
{
|
|
return m_settings.serialize();
|
|
}
|
|
|
|
bool DSDDemodGUI::deserialize(const QByteArray& data)
|
|
{
|
|
if (m_settings.deserialize(data))
|
|
{
|
|
displaySettings();
|
|
applySettings(true);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
resetToDefaults();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool DSDDemodGUI::handleMessage(const Message& message)
|
|
{
|
|
if (DSDDemod::MsgConfigureDSDDemod::match(message))
|
|
{
|
|
qDebug("DSDDemodGUI::handleMessage: DSDDemod::MsgConfigureDSDDemod");
|
|
const DSDDemod::MsgConfigureDSDDemod& cfg = (DSDDemod::MsgConfigureDSDDemod&) message;
|
|
m_settings = cfg.getSettings();
|
|
blockApplySettings(true);
|
|
displaySettings();
|
|
blockApplySettings(false);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void DSDDemodGUI::handleInputMessages()
|
|
{
|
|
Message* message;
|
|
|
|
while ((message = getInputMessageQueue()->pop()) != 0)
|
|
{
|
|
if (handleMessage(*message))
|
|
{
|
|
delete message;
|
|
}
|
|
}
|
|
}
|
|
|
|
void DSDDemodGUI::on_deltaFrequency_changed(qint64 value)
|
|
{
|
|
m_channelMarker.setCenterFrequency(value);
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_rfBW_valueChanged(int value)
|
|
{
|
|
m_channelMarker.setBandwidth(value * 100);
|
|
m_settings.m_rfBandwidth = value * 100.0;
|
|
ui->rfBWText->setText(QString("%1k").arg(value / 10.0, 0, 'f', 1));
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_demodGain_valueChanged(int value)
|
|
{
|
|
m_settings.m_demodGain = value / 100.0;
|
|
ui->demodGainText->setText(QString("%1").arg(value / 100.0, 0, 'f', 2));
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_fmDeviation_valueChanged(int value)
|
|
{
|
|
m_settings.m_fmDeviation = value * 100.0;
|
|
ui->fmDeviationText->setText(QString("%1%2k").arg(QChar(0xB1, 0x00)).arg(value / 10.0, 0, 'f', 1));
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_volume_valueChanged(int value)
|
|
{
|
|
m_settings.m_volume= value / 10.0;
|
|
ui->volumeText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_baudRate_currentIndexChanged(int index)
|
|
{
|
|
m_settings.m_baudRate = DSDDemodBaudRates::getRate(index);
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_enableCosineFiltering_toggled(bool enable)
|
|
{
|
|
m_settings.m_enableCosineFiltering = enable;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_syncOrConstellation_toggled(bool checked)
|
|
{
|
|
m_settings.m_syncOrConstellation = checked;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_traceLength_valueChanged(int value)
|
|
{
|
|
m_settings.m_traceLengthMutliplier = value;
|
|
ui->traceLengthText->setText(QString("%1").arg(m_settings.m_traceLengthMutliplier*50));
|
|
m_scopeVisXY->setPixelsPerFrame(m_settings.m_traceLengthMutliplier*960); // 48000 / 50. Chunks of 50 ms.
|
|
}
|
|
|
|
void DSDDemodGUI::on_traceStroke_valueChanged(int value)
|
|
{
|
|
m_settings.m_traceStroke = value;
|
|
ui->traceStrokeText->setText(QString("%1").arg(m_settings.m_traceStroke));
|
|
m_scopeVisXY->setStroke(m_settings.m_traceStroke);
|
|
}
|
|
|
|
void DSDDemodGUI::on_traceDecay_valueChanged(int value)
|
|
{
|
|
m_settings.m_traceDecay = value;
|
|
ui->traceDecayText->setText(QString("%1").arg(m_settings.m_traceDecay));
|
|
m_scopeVisXY->setDecay(m_settings.m_traceDecay);
|
|
}
|
|
|
|
void DSDDemodGUI::on_slot1On_toggled(bool checked)
|
|
{
|
|
m_settings.m_slot1On = checked;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_slot2On_toggled(bool checked)
|
|
{
|
|
m_settings.m_slot2On = checked;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_tdmaStereoSplit_toggled(bool checked)
|
|
{
|
|
m_settings.m_tdmaStereo = checked;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_squelchGate_valueChanged(int value)
|
|
{
|
|
m_settings.m_squelchGate = value;
|
|
ui->squelchGateText->setText(QString("%1").arg(value * 10.0, 0, 'f', 0));
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_squelch_valueChanged(int value)
|
|
{
|
|
ui->squelchText->setText(QString("%1").arg(value / 1.0, 0, 'f', 0));
|
|
m_settings.m_squelch = value;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_audioMute_toggled(bool checked)
|
|
{
|
|
m_settings.m_audioMute = checked;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_highPassFilter_toggled(bool checked)
|
|
{
|
|
m_settings.m_highPassFilter = checked;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::on_symbolPLLLock_toggled(bool checked)
|
|
{
|
|
if (checked) {
|
|
ui->symbolPLLLock->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
} else {
|
|
ui->symbolPLLLock->setStyleSheet("QToolButton { background:rgb(53,53,53); }");
|
|
}
|
|
m_settings.m_pllLock = checked;
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::onWidgetRolled(QWidget* widget, bool rollDown)
|
|
{
|
|
(void) widget;
|
|
(void) rollDown;
|
|
|
|
m_settings.m_rollupState = saveState();
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::onMenuDialogCalled(const QPoint &p)
|
|
{
|
|
if (m_contextMenuType == ContextMenuChannelSettings)
|
|
{
|
|
BasicChannelSettingsDialog dialog(&m_channelMarker, this);
|
|
dialog.setUseReverseAPI(m_settings.m_useReverseAPI);
|
|
dialog.setReverseAPIAddress(m_settings.m_reverseAPIAddress);
|
|
dialog.setReverseAPIPort(m_settings.m_reverseAPIPort);
|
|
dialog.setReverseAPIDeviceIndex(m_settings.m_reverseAPIDeviceIndex);
|
|
dialog.setReverseAPIChannelIndex(m_settings.m_reverseAPIChannelIndex);
|
|
|
|
dialog.move(p);
|
|
dialog.exec();
|
|
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
|
m_settings.m_rgbColor = m_channelMarker.getColor().rgb();
|
|
m_settings.m_title = m_channelMarker.getTitle();
|
|
m_settings.m_useReverseAPI = dialog.useReverseAPI();
|
|
m_settings.m_reverseAPIAddress = dialog.getReverseAPIAddress();
|
|
m_settings.m_reverseAPIPort = dialog.getReverseAPIPort();
|
|
m_settings.m_reverseAPIDeviceIndex = dialog.getReverseAPIDeviceIndex();
|
|
m_settings.m_reverseAPIChannelIndex = dialog.getReverseAPIChannelIndex();
|
|
|
|
setWindowTitle(m_settings.m_title);
|
|
setTitleColor(m_settings.m_rgbColor);
|
|
|
|
applySettings();
|
|
}
|
|
else if ((m_contextMenuType == ContextMenuStreamSettings) && (m_deviceUISet->m_deviceMIMOEngine))
|
|
{
|
|
DeviceStreamSelectionDialog dialog(this);
|
|
dialog.setNumberOfStreams(m_dsdDemod->getNumberOfDeviceStreams());
|
|
dialog.setStreamIndex(m_settings.m_streamIndex);
|
|
dialog.move(p);
|
|
dialog.exec();
|
|
|
|
m_settings.m_streamIndex = dialog.getSelectedStreamIndex();
|
|
m_channelMarker.clearStreamIndexes();
|
|
m_channelMarker.addStreamIndex(m_settings.m_streamIndex);
|
|
displayStreamIndex();
|
|
applySettings();
|
|
}
|
|
|
|
resetContextMenuType();
|
|
}
|
|
|
|
void DSDDemodGUI::on_viewStatusLog_clicked()
|
|
{
|
|
qDebug("DSDDemodGUI::on_viewStatusLog_clicked");
|
|
m_dsdStatusTextDialog.exec();
|
|
}
|
|
|
|
DSDDemodGUI::DSDDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent) :
|
|
ChannelGUI(parent),
|
|
ui(new Ui::DSDDemodGUI),
|
|
m_pluginAPI(pluginAPI),
|
|
m_deviceUISet(deviceUISet),
|
|
m_channelMarker(this),
|
|
m_doApplySettings(true),
|
|
m_enableCosineFiltering(false),
|
|
m_syncOrConstellation(false),
|
|
m_slot1On(false),
|
|
m_slot2On(false),
|
|
m_tdmaStereo(false),
|
|
m_squelchOpen(false),
|
|
m_audioSampleRate(-1),
|
|
m_tickCount(0),
|
|
m_dsdStatusTextDialog(0)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->screenTV->setColor(true);
|
|
ui->screenTV->resizeTVScreen(200,200);
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
|
|
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &)));
|
|
connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
|
|
|
CRightClickEnabler *audioMuteRightClickEnabler = new CRightClickEnabler(ui->audioMute);
|
|
connect(audioMuteRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(audioSelect()));
|
|
|
|
m_scopeVisXY = new ScopeVisXY(ui->screenTV);
|
|
m_scopeVisXY->setScale(2.0);
|
|
m_scopeVisXY->setPixelsPerFrame(4001);
|
|
m_scopeVisXY->setPlotRGB(qRgb(0, 220, 250));
|
|
m_scopeVisXY->setGridRGB(qRgb(255, 255, 128));
|
|
|
|
for (float x = -0.84; x < 1.0; x += 0.56)
|
|
{
|
|
for (float y = -0.84; y < 1.0; y += 0.56)
|
|
{
|
|
m_scopeVisXY->addGraticulePoint(std::complex<float>(x, y));
|
|
}
|
|
}
|
|
|
|
m_scopeVisXY->calculateGraticule(200,200);
|
|
|
|
m_dsdDemod = (DSDDemod*) rxChannel;
|
|
m_dsdDemod->setScopeXYSink(m_scopeVisXY);
|
|
m_dsdDemod->setMessageQueueToGUI(getInputMessageQueue());
|
|
|
|
connect(&MainCore::instance()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick()));
|
|
|
|
ui->audioMute->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
ui->deltaFrequencyLabel->setText(QString("%1f").arg(QChar(0x94, 0x03)));
|
|
ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
|
|
ui->deltaFrequency->setValueRange(false, 7, -9999999, 9999999);
|
|
ui->channelPowerMeter->setColorTheme(LevelMeterSignalDB::ColorGreenAndBlue);
|
|
|
|
m_channelMarker.blockSignals(true);
|
|
m_channelMarker.setColor(Qt::cyan);
|
|
m_channelMarker.setBandwidth(10000);
|
|
m_channelMarker.setCenterFrequency(0);
|
|
m_channelMarker.setTitle("DSD Demodulator");
|
|
m_channelMarker.blockSignals(false);
|
|
m_channelMarker.setVisible(true); // activate signal on the last setting only
|
|
|
|
m_deviceUISet->addChannelMarker(&m_channelMarker);
|
|
m_deviceUISet->addRollupWidget(this);
|
|
|
|
connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor()));
|
|
connect(&m_channelMarker, SIGNAL(highlightedByCursor()), this, SLOT(channelMarkerHighlightedByCursor()));
|
|
|
|
m_settings.setChannelMarker(&m_channelMarker);
|
|
|
|
updateMyPosition();
|
|
displaySettings();
|
|
applySettings(true);
|
|
}
|
|
|
|
DSDDemodGUI::~DSDDemodGUI()
|
|
{
|
|
delete m_scopeVisXY;
|
|
delete ui;
|
|
}
|
|
|
|
void DSDDemodGUI::updateMyPosition()
|
|
{
|
|
float latitude = MainCore::instance()->getSettings().getLatitude();
|
|
float longitude = MainCore::instance()->getSettings().getLongitude();
|
|
|
|
if ((m_myLatitude != latitude) || (m_myLongitude != longitude))
|
|
{
|
|
m_dsdDemod->configureMyPosition(latitude, longitude);
|
|
m_myLatitude = latitude;
|
|
m_myLongitude = longitude;
|
|
}
|
|
}
|
|
|
|
void DSDDemodGUI::displaySettings()
|
|
{
|
|
m_channelMarker.blockSignals(true);
|
|
m_channelMarker.setCenterFrequency(m_settings.m_inputFrequencyOffset);
|
|
m_channelMarker.setColor(m_settings.m_rgbColor);
|
|
m_channelMarker.setTitle(m_settings.m_title);
|
|
m_channelMarker.blockSignals(false);
|
|
setTitleColor(m_settings.m_rgbColor); // activate signal on the last setting only
|
|
|
|
setTitleColor(m_settings.m_rgbColor);
|
|
setWindowTitle(m_channelMarker.getTitle());
|
|
|
|
blockApplySettings(true);
|
|
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
|
|
|
ui->rfBW->setValue(m_settings.m_rfBandwidth / 100.0);
|
|
ui->rfBWText->setText(QString("%1k").arg(ui->rfBW->value() / 10.0, 0, 'f', 1));
|
|
|
|
ui->fmDeviation->setValue(m_settings.m_fmDeviation / 100.0);
|
|
ui->fmDeviationText->setText(QString("%1%2k").arg(QChar(0xB1, 0x00)).arg(ui->fmDeviation->value() / 10.0, 0, 'f', 1));
|
|
|
|
ui->squelch->setValue(m_settings.m_squelch);
|
|
ui->squelchText->setText(QString("%1").arg(ui->squelch->value() / 1.0, 0, 'f', 0));
|
|
|
|
ui->squelchGate->setValue(m_settings.m_squelchGate);
|
|
ui->squelchGateText->setText(QString("%1").arg(ui->squelchGate->value() * 10.0, 0, 'f', 0));
|
|
|
|
ui->demodGain->setValue(m_settings.m_demodGain * 100.0);
|
|
ui->demodGainText->setText(QString("%1").arg(ui->demodGain->value() / 100.0, 0, 'f', 2));
|
|
|
|
ui->volume->setValue(m_settings.m_volume * 10.0);
|
|
ui->volumeText->setText(QString("%1").arg(ui->volume->value() / 10.0, 0, 'f', 1));
|
|
|
|
ui->enableCosineFiltering->setChecked(m_settings.m_enableCosineFiltering);
|
|
ui->syncOrConstellation->setChecked(m_settings.m_syncOrConstellation);
|
|
ui->slot1On->setChecked(m_settings.m_slot1On);
|
|
ui->slot2On->setChecked(m_settings.m_slot2On);
|
|
ui->tdmaStereoSplit->setChecked(m_settings.m_tdmaStereo);
|
|
ui->audioMute->setChecked(m_settings.m_audioMute);
|
|
ui->symbolPLLLock->setChecked(m_settings.m_pllLock);
|
|
ui->highPassFilter->setChecked(m_settings.m_highPassFilter);
|
|
|
|
ui->baudRate->setCurrentIndex(DSDDemodBaudRates::getRateIndex(m_settings.m_baudRate));
|
|
|
|
ui->traceLength->setValue(m_settings.m_traceLengthMutliplier);
|
|
ui->traceLengthText->setText(QString("%1").arg(m_settings.m_traceLengthMutliplier*50));
|
|
m_scopeVisXY->setPixelsPerFrame(m_settings.m_traceLengthMutliplier*960); // 48000 / 50. Chunks of 50 ms.
|
|
|
|
ui->traceStroke->setValue(m_settings.m_traceStroke);
|
|
ui->traceStrokeText->setText(QString("%1").arg(m_settings.m_traceStroke));
|
|
m_scopeVisXY->setStroke(m_settings.m_traceStroke);
|
|
|
|
ui->traceDecay->setValue(m_settings.m_traceDecay);
|
|
ui->traceDecayText->setText(QString("%1").arg(m_settings.m_traceDecay));
|
|
m_scopeVisXY->setDecay(m_settings.m_traceDecay);
|
|
|
|
displayStreamIndex();
|
|
|
|
restoreState(m_settings.m_rollupState);
|
|
blockApplySettings(false);
|
|
}
|
|
|
|
void DSDDemodGUI::displayStreamIndex()
|
|
{
|
|
if (m_deviceUISet->m_deviceMIMOEngine) {
|
|
setStreamIndicator(tr("%1").arg(m_settings.m_streamIndex));
|
|
} else {
|
|
setStreamIndicator("S"); // single channel indicator
|
|
}
|
|
}
|
|
|
|
void DSDDemodGUI::applySettings(bool force)
|
|
{
|
|
if (m_doApplySettings)
|
|
{
|
|
qDebug() << "DSDDemodGUI::applySettings";
|
|
|
|
DSDDemod::MsgConfigureDSDDemod* message = DSDDemod::MsgConfigureDSDDemod::create( m_settings, force);
|
|
m_dsdDemod->getInputMessageQueue()->push(message);
|
|
}
|
|
}
|
|
|
|
void DSDDemodGUI::leaveEvent(QEvent*)
|
|
{
|
|
m_channelMarker.setHighlighted(false);
|
|
}
|
|
|
|
void DSDDemodGUI::enterEvent(QEvent*)
|
|
{
|
|
m_channelMarker.setHighlighted(true);
|
|
}
|
|
|
|
void DSDDemodGUI::blockApplySettings(bool block)
|
|
{
|
|
m_doApplySettings = !block;
|
|
}
|
|
|
|
void DSDDemodGUI::channelMarkerChangedByCursor()
|
|
{
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
|
applySettings();
|
|
}
|
|
|
|
void DSDDemodGUI::channelMarkerHighlightedByCursor()
|
|
{
|
|
setHighlighted(m_channelMarker.getHighlighted());
|
|
}
|
|
|
|
void DSDDemodGUI::audioSelect()
|
|
{
|
|
qDebug("DSDDemodGUI::audioSelect");
|
|
AudioSelectDialog audioSelect(DSPEngine::instance()->getAudioDeviceManager(), m_settings.m_audioDeviceName);
|
|
audioSelect.exec();
|
|
|
|
if (audioSelect.m_selected)
|
|
{
|
|
m_settings.m_audioDeviceName = audioSelect.m_audioDeviceName;
|
|
applySettings();
|
|
}
|
|
}
|
|
|
|
void DSDDemodGUI::tick()
|
|
{
|
|
double magsqAvg, magsqPeak;
|
|
int nbMagsqSamples;
|
|
m_dsdDemod->getMagSqLevels(magsqAvg, magsqPeak, nbMagsqSamples);
|
|
double powDbAvg = CalcDb::dbPower(magsqAvg);
|
|
double powDbPeak = CalcDb::dbPower(magsqPeak);
|
|
|
|
ui->channelPowerMeter->levelChanged(
|
|
(100.0f + powDbAvg) / 100.0f,
|
|
(100.0f + powDbPeak) / 100.0f,
|
|
nbMagsqSamples);
|
|
|
|
if (m_tickCount % 4 == 0) {
|
|
ui->channelPower->setText(tr("%1 dB").arg(powDbAvg, 0, 'f', 1));
|
|
}
|
|
|
|
int audioSampleRate = m_dsdDemod->getAudioSampleRate();
|
|
bool squelchOpen = m_dsdDemod->getSquelchOpen();
|
|
|
|
if ((audioSampleRate != m_audioSampleRate) || (squelchOpen != m_squelchOpen))
|
|
{
|
|
if (audioSampleRate < 0) {
|
|
ui->audioMute->setStyleSheet("QToolButton { background-color : red; }");
|
|
} else if (squelchOpen) {
|
|
ui->audioMute->setStyleSheet("QToolButton { background-color : green; }");
|
|
} else {
|
|
ui->audioMute->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
}
|
|
|
|
m_audioSampleRate = audioSampleRate;
|
|
m_squelchOpen = squelchOpen;
|
|
}
|
|
|
|
// "slow" updates
|
|
|
|
if (m_tickCount % 10 == 0)
|
|
{
|
|
ui->inLevelText->setText(QString::number(m_dsdDemod->getDecoder().getInLevel()));
|
|
ui->inCarrierPosText->setText(QString::number(m_dsdDemod->getDecoder().getCarrierPos()));
|
|
ui->zcPosText->setText(QString::number(m_dsdDemod->getDecoder().getZeroCrossingPos()));
|
|
ui->symbolSyncQualityText->setText(QString::number(m_dsdDemod->getDecoder().getSymbolSyncQuality()));
|
|
|
|
if (m_dsdDemod->getDecoder().getVoice1On()) {
|
|
ui->slot1On->setStyleSheet("QToolButton { background-color : green; }");
|
|
} else {
|
|
ui->slot1On->setStyleSheet("QToolButton { background-color : rgb(79,79,79); }");
|
|
}
|
|
|
|
if (m_dsdDemod->getDecoder().getVoice2On()) {
|
|
ui->slot2On->setStyleSheet("QToolButton { background-color : green; }");
|
|
} else {
|
|
ui->slot2On->setStyleSheet("QToolButton { background-color : rgb(79,79,79); }");
|
|
}
|
|
|
|
const char *frameTypeText = m_dsdDemod->getDecoder().getFrameTypeText();
|
|
|
|
if (frameTypeText[0] == '\0') {
|
|
ui->syncText->setStyleSheet("QLabel { background:rgb(53,53,53); }"); // turn off background
|
|
} else {
|
|
ui->syncText->setStyleSheet("QLabel { background:rgb(37,53,39); }"); // turn on background
|
|
}
|
|
|
|
ui->syncText->setText(QString(frameTypeText));
|
|
|
|
const char *formatStatusText = m_dsdDemod->updateAndGetStatusText();
|
|
ui->formatStatusText->setText(QString(formatStatusText));
|
|
|
|
if (ui->activateStatusLog->isChecked()) {
|
|
m_dsdStatusTextDialog.addLine(QString(formatStatusText));
|
|
}
|
|
|
|
if (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
|
|
}
|
|
|
|
if (m_squelchOpen && ui->symbolPLLLock->isChecked() && m_dsdDemod->getDecoder().getSymbolPLLLocked()) {
|
|
ui->symbolPLLLock->setStyleSheet("QToolButton { background-color : green; }");
|
|
} else {
|
|
ui->symbolPLLLock->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
}
|
|
}
|
|
|
|
m_tickCount++;
|
|
}
|