2016-10-20 16:04:15 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 Edouard Griffiths, F4EXB //
|
|
|
|
// //
|
|
|
|
// 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 //
|
2019-04-11 04:39:30 +00:00
|
|
|
// (at your option) any later version. //
|
2016-10-20 16:04:15 +00:00
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2015-05-12 00:53:35 +00:00
|
|
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QMainWindow>
|
2018-12-16 20:22:46 +00:00
|
|
|
#include <QDebug>
|
2016-10-03 13:55:16 +00:00
|
|
|
|
2016-10-20 16:04:15 +00:00
|
|
|
#include "amdemodgui.h"
|
2018-05-13 20:30:50 +00:00
|
|
|
#include "amdemodssbdialog.h"
|
2016-10-20 16:04:15 +00:00
|
|
|
|
2017-10-31 07:24:05 +00:00
|
|
|
#include "device/deviceuiset.h"
|
2018-03-26 16:41:09 +00:00
|
|
|
#include "dsp/dspengine.h"
|
2015-05-12 00:53:35 +00:00
|
|
|
#include "ui_amdemodgui.h"
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
2015-10-04 09:22:37 +00:00
|
|
|
#include "util/db.h"
|
2017-08-26 03:32:01 +00:00
|
|
|
#include "gui/basicchannelsettingsdialog.h"
|
2019-05-20 23:52:13 +00:00
|
|
|
#include "gui/devicestreamselectiondialog.h"
|
2015-08-17 06:29:34 +00:00
|
|
|
#include "dsp/dspengine.h"
|
2018-03-26 16:41:09 +00:00
|
|
|
#include "gui/crightclickenabler.h"
|
|
|
|
#include "gui/audioselectdialog.h"
|
2020-10-12 19:59:04 +00:00
|
|
|
#include "maincore.h"
|
2015-05-12 00:53:35 +00:00
|
|
|
|
2016-10-20 16:04:15 +00:00
|
|
|
#include "amdemod.h"
|
2015-05-12 00:53:35 +00:00
|
|
|
|
2017-11-09 00:03:05 +00:00
|
|
|
AMDemodGUI* AMDemodGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
2017-11-09 00:03:05 +00:00
|
|
|
AMDemodGUI* gui = new AMDemodGUI(pluginAPI, deviceUISet, rxChannel);
|
2015-05-12 00:53:35 +00:00
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::destroy()
|
|
|
|
{
|
2017-11-09 00:03:05 +00:00
|
|
|
delete this;
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::resetToDefaults()
|
|
|
|
{
|
2017-09-26 22:55:33 +00:00
|
|
|
m_settings.resetToDefaults();
|
|
|
|
displaySettings();
|
|
|
|
applySettings(true);
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray AMDemodGUI::serialize() const
|
|
|
|
{
|
2017-09-26 22:55:33 +00:00
|
|
|
return m_settings.serialize();
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AMDemodGUI::deserialize(const QByteArray& data)
|
|
|
|
{
|
2017-09-26 22:55:33 +00:00
|
|
|
if(m_settings.deserialize(data)) {
|
|
|
|
displaySettings();
|
|
|
|
applySettings(true);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
2018-11-12 23:45:03 +00:00
|
|
|
bool AMDemodGUI::handleMessage(const Message& message)
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
2018-03-22 05:34:51 +00:00
|
|
|
if (AMDemod::MsgConfigureAMDemod::match(message))
|
|
|
|
{
|
|
|
|
qDebug("AMDemodGUI::handleMessage: AMDemod::MsgConfigureAMDemod");
|
|
|
|
const AMDemod::MsgConfigureAMDemod& cfg = (AMDemod::MsgConfigureAMDemod&) message;
|
|
|
|
m_settings = cfg.getSettings();
|
|
|
|
blockApplySettings(true);
|
2021-12-02 22:54:39 +00:00
|
|
|
m_channelMarker.updateSettings(static_cast<const ChannelMarker*>(m_settings.m_channelMarker));
|
2018-03-22 05:34:51 +00:00
|
|
|
displaySettings();
|
|
|
|
blockApplySettings(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-12 00:53:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-22 05:34:51 +00:00
|
|
|
void AMDemodGUI::handleInputMessages()
|
|
|
|
{
|
|
|
|
Message* message;
|
|
|
|
|
|
|
|
while ((message = getInputMessageQueue()->pop()) != 0)
|
|
|
|
{
|
|
|
|
if (handleMessage(*message))
|
|
|
|
{
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-13 23:35:25 +00:00
|
|
|
void AMDemodGUI::channelMarkerChangedByCursor()
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
2017-11-13 23:35:25 +00:00
|
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
2017-11-14 00:23:01 +00:00
|
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
2015-05-12 00:53:35 +00:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2017-11-14 21:58:35 +00:00
|
|
|
void AMDemodGUI::channelMarkerHighlightedByCursor()
|
|
|
|
{
|
|
|
|
setHighlighted(m_channelMarker.getHighlighted());
|
|
|
|
}
|
|
|
|
|
2017-05-17 21:34:14 +00:00
|
|
|
void AMDemodGUI::on_deltaFrequency_changed(qint64 value)
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
2017-05-17 21:34:14 +00:00
|
|
|
m_channelMarker.setCenterFrequency(value);
|
2017-09-26 21:53:35 +00:00
|
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
|
|
|
applySettings();
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
2018-05-13 15:27:24 +00:00
|
|
|
void AMDemodGUI::on_pll_toggled(bool checked)
|
|
|
|
{
|
2018-05-20 01:50:22 +00:00
|
|
|
if (!checked)
|
|
|
|
{
|
2018-05-13 15:27:24 +00:00
|
|
|
ui->pll->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
2018-05-20 01:50:22 +00:00
|
|
|
ui->pll->setToolTip(tr("PLL for synchronous AM"));
|
2018-05-13 15:27:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_settings.m_pll = checked;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2018-05-13 20:30:50 +00:00
|
|
|
void AMDemodGUI::on_ssb_toggled(bool checked)
|
|
|
|
{
|
|
|
|
m_settings.m_syncAMOperation = checked ? m_samUSB ? AMDemodSettings::SyncAMUSB : AMDemodSettings::SyncAMLSB : AMDemodSettings::SyncAMDSB;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2017-09-26 21:53:35 +00:00
|
|
|
void AMDemodGUI::on_bandpassEnable_toggled(bool checked)
|
2017-05-12 17:21:52 +00:00
|
|
|
{
|
2017-09-26 21:53:35 +00:00
|
|
|
m_settings.m_bandpassEnable = checked;
|
2017-05-12 17:21:52 +00:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2015-05-12 00:53:35 +00:00
|
|
|
void AMDemodGUI::on_rfBW_valueChanged(int value)
|
|
|
|
{
|
2016-11-30 23:10:34 +00:00
|
|
|
ui->rfBWText->setText(QString("%1 kHz").arg(value / 10.0, 0, 'f', 1));
|
2016-11-30 15:42:06 +00:00
|
|
|
m_channelMarker.setBandwidth(value * 100);
|
2017-09-26 21:53:35 +00:00
|
|
|
m_settings.m_rfBandwidth = value * 100;
|
2015-05-12 00:53:35 +00:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::on_volume_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->volumeText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
|
2017-09-26 21:53:35 +00:00
|
|
|
m_settings.m_volume = value / 10.0;
|
2015-05-12 00:53:35 +00:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::on_squelch_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->squelchText->setText(QString("%1 dB").arg(value));
|
2017-09-26 21:53:35 +00:00
|
|
|
m_settings.m_squelch = value;
|
2015-05-12 00:53:35 +00:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2017-09-26 21:53:35 +00:00
|
|
|
void AMDemodGUI::on_audioMute_toggled(bool checked)
|
2015-12-26 17:23:55 +00:00
|
|
|
{
|
2017-09-26 21:53:35 +00:00
|
|
|
m_settings.m_audioMute = checked;
|
2015-12-26 17:23:55 +00:00
|
|
|
applySettings();
|
|
|
|
}
|
2015-05-12 00:53:35 +00:00
|
|
|
|
2018-11-12 23:45:03 +00:00
|
|
|
void AMDemodGUI::onWidgetRolled(QWidget* widget, bool rollDown)
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
2018-11-12 23:45:03 +00:00
|
|
|
(void) widget;
|
|
|
|
(void) rollDown;
|
2015-05-12 00:53:35 +00:00
|
|
|
/*
|
|
|
|
if((widget == ui->spectrumContainer) && (m_nfmDemod != NULL))
|
|
|
|
m_nfmDemod->setSpectrum(m_threadedSampleSink->getMessageQueue(), rollDown);
|
|
|
|
*/
|
2021-11-24 09:50:42 +00:00
|
|
|
|
2022-01-09 04:27:12 +00:00
|
|
|
saveState(m_rollupState);
|
2021-11-24 09:50:42 +00:00
|
|
|
applySettings();
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
2017-08-26 03:32:01 +00:00
|
|
|
void AMDemodGUI::onMenuDialogCalled(const QPoint &p)
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
2019-05-09 19:07:05 +00:00
|
|
|
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();
|
|
|
|
}
|
2019-05-20 14:31:15 +00:00
|
|
|
else if ((m_contextMenuType == ContextMenuStreamSettings) && (m_deviceUISet->m_deviceMIMOEngine))
|
|
|
|
{
|
2019-05-20 23:52:13 +00:00
|
|
|
DeviceStreamSelectionDialog dialog(this);
|
|
|
|
dialog.setNumberOfStreams(m_amDemod->getNumberOfDeviceStreams());
|
|
|
|
dialog.setStreamIndex(m_settings.m_streamIndex);
|
|
|
|
dialog.move(p);
|
|
|
|
dialog.exec();
|
|
|
|
|
|
|
|
m_settings.m_streamIndex = dialog.getSelectedStreamIndex();
|
2019-09-08 22:58:26 +00:00
|
|
|
m_channelMarker.clearStreamIndexes();
|
|
|
|
m_channelMarker.addStreamIndex(m_settings.m_streamIndex);
|
2019-05-27 00:52:33 +00:00
|
|
|
displayStreamIndex();
|
2019-05-20 23:52:13 +00:00
|
|
|
applySettings();
|
2019-05-20 14:31:15 +00:00
|
|
|
}
|
2017-11-13 23:35:25 +00:00
|
|
|
|
2019-05-09 19:07:05 +00:00
|
|
|
resetContextMenuType();
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
2017-11-09 00:03:05 +00:00
|
|
|
AMDemodGUI::AMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent) :
|
2020-10-04 04:16:15 +00:00
|
|
|
ChannelGUI(parent),
|
2015-05-12 00:53:35 +00:00
|
|
|
ui(new Ui::AMDemodGUI),
|
|
|
|
m_pluginAPI(pluginAPI),
|
2017-10-31 07:24:05 +00:00
|
|
|
m_deviceUISet(deviceUISet),
|
2015-08-24 21:39:43 +00:00
|
|
|
m_channelMarker(this),
|
2015-10-04 09:22:37 +00:00
|
|
|
m_doApplySettings(true),
|
2017-08-17 15:21:38 +00:00
|
|
|
m_squelchOpen(false),
|
2020-08-01 08:09:39 +00:00
|
|
|
m_audioSampleRate(-1),
|
2018-05-13 20:30:50 +00:00
|
|
|
m_samUSB(true),
|
2017-08-17 15:21:38 +00:00
|
|
|
m_tickCount(0)
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2021-11-24 11:31:51 +00:00
|
|
|
m_helpURL = "plugins/channelrx/demodam/readme.md";
|
2015-05-12 00:53:35 +00:00
|
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
|
2017-08-26 03:32:01 +00:00
|
|
|
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &)));
|
2015-05-12 00:53:35 +00:00
|
|
|
|
2020-10-14 20:07:48 +00:00
|
|
|
m_amDemod = reinterpret_cast<AMDemod*>(rxChannel);
|
2018-03-22 05:34:51 +00:00
|
|
|
m_amDemod->setMessageQueueToGUI(getInputMessageQueue());
|
2016-05-11 16:29:01 +00:00
|
|
|
|
2020-10-12 19:59:04 +00:00
|
|
|
connect(&MainCore::instance()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick())); // 50 ms
|
2015-05-12 00:53:35 +00:00
|
|
|
|
2018-03-26 16:41:09 +00:00
|
|
|
CRightClickEnabler *audioMuteRightClickEnabler = new CRightClickEnabler(ui->audioMute);
|
2018-12-16 23:34:14 +00:00
|
|
|
connect(audioMuteRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(audioSelect()));
|
2018-03-26 16:41:09 +00:00
|
|
|
|
2018-05-13 20:30:50 +00:00
|
|
|
CRightClickEnabler *samSidebandRightClickEnabler = new CRightClickEnabler(ui->ssb);
|
2018-12-16 23:34:14 +00:00
|
|
|
connect(samSidebandRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(samSSBSelect()));
|
2018-05-13 20:30:50 +00:00
|
|
|
|
2017-05-17 21:34:14 +00:00
|
|
|
ui->deltaFrequencyLabel->setText(QString("%1f").arg(QChar(0x94, 0x03)));
|
|
|
|
ui->deltaFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
|
|
|
|
ui->deltaFrequency->setValueRange(false, 7, -9999999, 9999999);
|
2016-12-05 23:25:59 +00:00
|
|
|
ui->channelPowerMeter->setColorTheme(LevelMeterSignalDB::ColorGreenAndBlue);
|
2015-08-24 21:39:43 +00:00
|
|
|
|
2017-11-13 23:35:25 +00:00
|
|
|
m_channelMarker.blockSignals(true);
|
2015-08-24 21:39:43 +00:00
|
|
|
m_channelMarker.setColor(Qt::yellow);
|
2016-11-30 15:42:06 +00:00
|
|
|
m_channelMarker.setBandwidth(5000);
|
2015-08-24 21:39:43 +00:00
|
|
|
m_channelMarker.setCenterFrequency(0);
|
2017-08-26 03:32:01 +00:00
|
|
|
m_channelMarker.setTitle("AM Demodulator");
|
2017-11-13 23:35:25 +00:00
|
|
|
m_channelMarker.blockSignals(false);
|
|
|
|
m_channelMarker.setVisible(true); // activate signal on the last setting only
|
|
|
|
|
2017-08-26 03:32:01 +00:00
|
|
|
setTitleColor(m_channelMarker.getColor());
|
2017-10-01 14:52:23 +00:00
|
|
|
m_settings.setChannelMarker(&m_channelMarker);
|
2022-01-09 04:27:12 +00:00
|
|
|
m_settings.setRollupState(&m_rollupState);
|
2016-05-16 17:37:53 +00:00
|
|
|
|
2017-10-31 07:24:05 +00:00
|
|
|
m_deviceUISet->addChannelMarker(&m_channelMarker);
|
|
|
|
m_deviceUISet->addRollupWidget(this);
|
2015-05-12 00:53:35 +00:00
|
|
|
|
2017-11-13 23:35:25 +00:00
|
|
|
connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor()));
|
2017-11-14 21:58:35 +00:00
|
|
|
connect(&m_channelMarker, SIGNAL(highlightedByCursor()), this, SLOT(channelMarkerHighlightedByCursor()));
|
2018-03-22 05:34:51 +00:00
|
|
|
connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
2017-11-13 23:35:25 +00:00
|
|
|
|
2018-05-13 20:30:50 +00:00
|
|
|
m_iconDSBUSB.addPixmap(QPixmap("://dsb.png"), QIcon::Normal, QIcon::Off);
|
|
|
|
m_iconDSBUSB.addPixmap(QPixmap("://usb.png"), QIcon::Normal, QIcon::On);
|
|
|
|
m_iconDSBLSB.addPixmap(QPixmap("://dsb.png"), QIcon::Normal, QIcon::Off);
|
|
|
|
m_iconDSBLSB.addPixmap(QPixmap("://lsb.png"), QIcon::Normal, QIcon::On);
|
|
|
|
|
2017-11-13 23:35:25 +00:00
|
|
|
displaySettings();
|
2017-08-26 03:32:01 +00:00
|
|
|
applySettings(true);
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AMDemodGUI::~AMDemodGUI()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2015-08-18 23:02:52 +00:00
|
|
|
void AMDemodGUI::blockApplySettings(bool block)
|
|
|
|
{
|
|
|
|
m_doApplySettings = !block;
|
|
|
|
}
|
|
|
|
|
2017-08-26 03:32:01 +00:00
|
|
|
void AMDemodGUI::applySettings(bool force)
|
2015-05-12 00:53:35 +00:00
|
|
|
{
|
2015-08-18 23:02:52 +00:00
|
|
|
if (m_doApplySettings)
|
|
|
|
{
|
2017-09-26 22:16:35 +00:00
|
|
|
AMDemod::MsgConfigureAMDemod* message = AMDemod::MsgConfigureAMDemod::create( m_settings, force);
|
|
|
|
m_amDemod->getInputMessageQueue()->push(message);
|
2015-08-18 23:02:52 +00:00
|
|
|
}
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 21:53:35 +00:00
|
|
|
void AMDemodGUI::displaySettings()
|
|
|
|
{
|
2017-10-11 23:21:30 +00:00
|
|
|
m_channelMarker.blockSignals(true);
|
|
|
|
m_channelMarker.setCenterFrequency(m_settings.m_inputFrequencyOffset);
|
|
|
|
m_channelMarker.setBandwidth(m_settings.m_rfBandwidth);
|
2017-11-19 02:38:07 +00:00
|
|
|
m_channelMarker.setTitle(m_settings.m_title);
|
2017-10-11 23:21:30 +00:00
|
|
|
m_channelMarker.blockSignals(false);
|
2017-11-13 23:35:25 +00:00
|
|
|
m_channelMarker.setColor(m_settings.m_rgbColor); // activate signal on the last setting only
|
2017-10-11 23:21:30 +00:00
|
|
|
|
2017-11-13 23:35:25 +00:00
|
|
|
setTitleColor(m_settings.m_rgbColor);
|
2017-10-11 23:21:30 +00:00
|
|
|
setWindowTitle(m_channelMarker.getTitle());
|
|
|
|
|
2017-09-26 21:53:35 +00:00
|
|
|
blockApplySettings(true);
|
|
|
|
|
2017-11-13 23:35:25 +00:00
|
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
|
|
|
|
2017-09-26 21:53:35 +00:00
|
|
|
int displayValue = m_settings.m_rfBandwidth/100.0;
|
|
|
|
ui->rfBW->setValue(displayValue);
|
|
|
|
ui->rfBWText->setText(QString("%1 kHz").arg(displayValue / 10.0, 0, 'f', 1));
|
|
|
|
|
|
|
|
ui->volume->setValue(m_settings.m_volume * 10.0);
|
|
|
|
ui->volumeText->setText(QString("%1").arg(m_settings.m_volume, 0, 'f', 1));
|
|
|
|
|
|
|
|
ui->squelch->setValue(m_settings.m_squelch);
|
|
|
|
ui->squelchText->setText(QString("%1 dB").arg(m_settings.m_squelch));
|
|
|
|
|
|
|
|
ui->audioMute->setChecked(m_settings.m_audioMute);
|
|
|
|
ui->bandpassEnable->setChecked(m_settings.m_bandpassEnable);
|
2018-05-13 15:27:24 +00:00
|
|
|
ui->pll->setChecked(m_settings.m_pll);
|
2017-09-26 21:53:35 +00:00
|
|
|
|
2018-12-16 20:22:46 +00:00
|
|
|
qDebug() << "AMDemodGUI::displaySettings:"
|
|
|
|
<< " m_pll: " << m_settings.m_pll
|
|
|
|
<< " m_syncAMOperation: " << m_settings.m_syncAMOperation;
|
|
|
|
|
2018-12-16 19:41:21 +00:00
|
|
|
if (m_settings.m_pll)
|
|
|
|
{
|
|
|
|
if (m_settings.m_syncAMOperation == AMDemodSettings::SyncAMLSB)
|
|
|
|
{
|
2018-05-13 20:30:50 +00:00
|
|
|
m_samUSB = false;
|
2018-12-16 20:22:46 +00:00
|
|
|
ui->ssb->setChecked(true);
|
2018-05-13 20:30:50 +00:00
|
|
|
ui->ssb->setIcon(m_iconDSBLSB);
|
2018-12-16 19:41:21 +00:00
|
|
|
}
|
2018-12-16 20:22:46 +00:00
|
|
|
else if (m_settings.m_syncAMOperation == AMDemodSettings::SyncAMUSB)
|
2018-12-16 19:41:21 +00:00
|
|
|
{
|
2018-05-13 20:30:50 +00:00
|
|
|
m_samUSB = true;
|
2018-12-16 20:22:46 +00:00
|
|
|
ui->ssb->setChecked(true);
|
2018-05-13 20:30:50 +00:00
|
|
|
ui->ssb->setIcon(m_iconDSBUSB);
|
|
|
|
}
|
2018-12-16 20:22:46 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->ssb->setChecked(false);
|
|
|
|
}
|
2018-05-13 20:30:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-16 20:22:46 +00:00
|
|
|
ui->ssb->setChecked(false);
|
2018-05-13 20:30:50 +00:00
|
|
|
ui->ssb->setIcon(m_iconDSBUSB);
|
|
|
|
}
|
|
|
|
|
2019-05-20 14:31:15 +00:00
|
|
|
displayStreamIndex();
|
|
|
|
|
2022-01-09 04:27:12 +00:00
|
|
|
restoreState(m_rollupState);
|
2017-09-26 21:53:35 +00:00
|
|
|
blockApplySettings(false);
|
|
|
|
}
|
|
|
|
|
2019-05-20 14:31:15 +00:00
|
|
|
void AMDemodGUI::displayStreamIndex()
|
|
|
|
{
|
|
|
|
if (m_deviceUISet->m_deviceMIMOEngine) {
|
|
|
|
setStreamIndicator(tr("%1").arg(m_settings.m_streamIndex));
|
|
|
|
} else {
|
|
|
|
setStreamIndicator("S"); // single channel indicator
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 00:53:35 +00:00
|
|
|
void AMDemodGUI::leaveEvent(QEvent*)
|
|
|
|
{
|
2015-08-24 21:39:43 +00:00
|
|
|
m_channelMarker.setHighlighted(false);
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::enterEvent(QEvent*)
|
|
|
|
{
|
2015-08-24 21:39:43 +00:00
|
|
|
m_channelMarker.setHighlighted(true);
|
2015-05-12 00:53:35 +00:00
|
|
|
}
|
|
|
|
|
2018-03-26 16:41:09 +00:00
|
|
|
void AMDemodGUI::audioSelect()
|
|
|
|
{
|
|
|
|
qDebug("AMDemodGUI::audioSelect");
|
|
|
|
AudioSelectDialog audioSelect(DSPEngine::instance()->getAudioDeviceManager(), m_settings.m_audioDeviceName);
|
|
|
|
audioSelect.exec();
|
|
|
|
|
|
|
|
if (audioSelect.m_selected)
|
|
|
|
{
|
|
|
|
m_settings.m_audioDeviceName = audioSelect.m_audioDeviceName;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-13 20:30:50 +00:00
|
|
|
void AMDemodGUI::samSSBSelect()
|
|
|
|
{
|
|
|
|
AMDemodSSBDialog ssbSelect(m_samUSB);
|
|
|
|
ssbSelect.exec();
|
|
|
|
|
|
|
|
ui->ssb->setIcon(ssbSelect.isUsb() ? m_iconDSBUSB : m_iconDSBLSB);
|
|
|
|
|
|
|
|
if (ssbSelect.isUsb() != m_samUSB)
|
|
|
|
{
|
|
|
|
qDebug("AMDemodGUI::samSSBSelect: %s", ssbSelect.isUsb() ? "usb" : "lsb");
|
|
|
|
m_samUSB = ssbSelect.isUsb();
|
|
|
|
|
|
|
|
if (m_settings.m_syncAMOperation != AMDemodSettings::SyncAMDSB)
|
|
|
|
{
|
|
|
|
m_settings.m_syncAMOperation = m_samUSB ? AMDemodSettings::SyncAMUSB : AMDemodSettings::SyncAMLSB;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-04 09:22:37 +00:00
|
|
|
void AMDemodGUI::tick()
|
|
|
|
{
|
2017-05-16 21:39:49 +00:00
|
|
|
double magsqAvg, magsqPeak;
|
2016-12-06 00:57:35 +00:00
|
|
|
int nbMagsqSamples;
|
|
|
|
m_amDemod->getMagSqLevels(magsqAvg, magsqPeak, nbMagsqSamples);
|
2017-05-16 21:39:49 +00:00
|
|
|
double powDbAvg = CalcDb::dbPower(magsqAvg);
|
|
|
|
double powDbPeak = CalcDb::dbPower(magsqPeak);
|
2016-12-06 00:57:35 +00:00
|
|
|
|
|
|
|
ui->channelPowerMeter->levelChanged(
|
|
|
|
(100.0f + powDbAvg) / 100.0f,
|
|
|
|
(100.0f + powDbPeak) / 100.0f,
|
|
|
|
nbMagsqSamples);
|
|
|
|
|
2017-08-17 15:21:38 +00:00
|
|
|
if (m_tickCount % 4 == 0) {
|
|
|
|
ui->channelPower->setText(QString::number(powDbAvg, 'f', 1));
|
|
|
|
}
|
2016-12-04 22:29:59 +00:00
|
|
|
|
2020-08-01 08:09:39 +00:00
|
|
|
int audioSampleRate = m_amDemod->getAudioSampleRate();
|
2016-03-27 03:44:35 +00:00
|
|
|
bool squelchOpen = m_amDemod->getSquelchOpen();
|
|
|
|
|
2020-08-01 08:09:39 +00:00
|
|
|
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); }");
|
|
|
|
}
|
2016-03-27 03:44:35 +00:00
|
|
|
|
2020-08-01 08:09:39 +00:00
|
|
|
m_audioSampleRate = audioSampleRate;
|
|
|
|
m_squelchOpen = squelchOpen;
|
|
|
|
}
|
2017-08-17 15:21:38 +00:00
|
|
|
|
2018-05-13 15:27:24 +00:00
|
|
|
if (m_settings.m_pll)
|
|
|
|
{
|
|
|
|
if (m_amDemod->getPllLocked()) {
|
|
|
|
ui->pll->setStyleSheet("QToolButton { background-color : green; }");
|
|
|
|
} else {
|
|
|
|
ui->pll->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
|
|
|
}
|
2018-05-20 01:50:22 +00:00
|
|
|
|
2020-08-01 08:09:39 +00:00
|
|
|
int freq = (m_amDemod->getPllFrequency() * audioSampleRate) / (2.0*M_PI);
|
2018-05-20 01:50:22 +00:00
|
|
|
ui->pll->setToolTip(tr("PLL for synchronous AM. Freq = %1 Hz").arg(freq));
|
2018-05-13 15:27:24 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 15:21:38 +00:00
|
|
|
m_tickCount++;
|
2015-10-04 09:22:37 +00:00
|
|
|
}
|
|
|
|
|