2016-10-20 12:04:15 -04: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 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2016-10-20 12:04:15 -04: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-11 20:53:35 -04:00
|
|
|
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QMainWindow>
|
2018-12-16 15:22:46 -05:00
|
|
|
#include <QDebug>
|
2016-10-03 09:55:16 -04:00
|
|
|
|
2016-10-20 12:04:15 -04:00
|
|
|
#include "amdemodgui.h"
|
2018-05-13 16:30:50 -04:00
|
|
|
#include "amdemodssbdialog.h"
|
2016-10-20 12:04:15 -04:00
|
|
|
|
2017-10-31 03:24:05 -04:00
|
|
|
#include "device/deviceuiset.h"
|
2016-10-20 12:04:15 -04:00
|
|
|
#include "dsp/downchannelizer.h"
|
2018-03-26 12:41:09 -04:00
|
|
|
#include "dsp/dspengine.h"
|
2016-10-20 12:04:15 -04:00
|
|
|
#include "dsp/threadedbasebandsamplesink.h"
|
2015-05-11 20:53:35 -04:00
|
|
|
#include "ui_amdemodgui.h"
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
2015-10-04 05:22:37 -04:00
|
|
|
#include "util/db.h"
|
2017-08-25 23:32:01 -04:00
|
|
|
#include "gui/basicchannelsettingsdialog.h"
|
2019-05-20 19:52:13 -04:00
|
|
|
#include "gui/devicestreamselectiondialog.h"
|
2015-08-17 02:29:34 -04:00
|
|
|
#include "dsp/dspengine.h"
|
2015-10-04 05:22:37 -04:00
|
|
|
#include "mainwindow.h"
|
2018-03-26 12:41:09 -04:00
|
|
|
#include "gui/crightclickenabler.h"
|
|
|
|
#include "gui/audioselectdialog.h"
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2016-10-20 12:04:15 -04:00
|
|
|
#include "amdemod.h"
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
AMDemodGUI* AMDemodGUI::create(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2017-11-08 19:03:05 -05:00
|
|
|
AMDemodGUI* gui = new AMDemodGUI(pluginAPI, deviceUISet, rxChannel);
|
2015-05-11 20:53:35 -04:00
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::destroy()
|
|
|
|
{
|
2017-11-08 19:03:05 -05:00
|
|
|
delete this;
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::setName(const QString& name)
|
|
|
|
{
|
|
|
|
setObjectName(name);
|
|
|
|
}
|
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
QString AMDemodGUI::getName() const
|
|
|
|
{
|
|
|
|
return objectName();
|
|
|
|
}
|
|
|
|
|
2015-07-18 20:07:40 -04:00
|
|
|
qint64 AMDemodGUI::getCenterFrequency() const {
|
2015-08-24 17:39:43 -04:00
|
|
|
return m_channelMarker.getCenterFrequency();
|
2015-07-18 20:07:40 -04:00
|
|
|
}
|
|
|
|
|
2015-09-28 21:35:14 -04:00
|
|
|
void AMDemodGUI::setCenterFrequency(qint64 centerFrequency)
|
|
|
|
{
|
|
|
|
m_channelMarker.setCenterFrequency(centerFrequency);
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
void AMDemodGUI::resetToDefaults()
|
|
|
|
{
|
2017-09-26 18:55:33 -04:00
|
|
|
m_settings.resetToDefaults();
|
|
|
|
displaySettings();
|
|
|
|
applySettings(true);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray AMDemodGUI::serialize() const
|
|
|
|
{
|
2017-09-26 18:55:33 -04:00
|
|
|
return m_settings.serialize();
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool AMDemodGUI::deserialize(const QByteArray& data)
|
|
|
|
{
|
2017-09-26 18:55:33 -04:00
|
|
|
if(m_settings.deserialize(data)) {
|
|
|
|
displaySettings();
|
|
|
|
applySettings(true);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
resetToDefaults();
|
|
|
|
return false;
|
|
|
|
}
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2018-11-12 18:45:03 -05:00
|
|
|
bool AMDemodGUI::handleMessage(const Message& message)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2018-03-22 01:34:51 -04:00
|
|
|
if (AMDemod::MsgConfigureAMDemod::match(message))
|
|
|
|
{
|
|
|
|
qDebug("AMDemodGUI::handleMessage: AMDemod::MsgConfigureAMDemod");
|
|
|
|
const AMDemod::MsgConfigureAMDemod& cfg = (AMDemod::MsgConfigureAMDemod&) message;
|
|
|
|
m_settings = cfg.getSettings();
|
|
|
|
blockApplySettings(true);
|
|
|
|
displaySettings();
|
|
|
|
blockApplySettings(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-22 01:34:51 -04:00
|
|
|
void AMDemodGUI::handleInputMessages()
|
|
|
|
{
|
|
|
|
Message* message;
|
|
|
|
|
|
|
|
while ((message = getInputMessageQueue()->pop()) != 0)
|
|
|
|
{
|
|
|
|
if (handleMessage(*message))
|
|
|
|
{
|
|
|
|
delete message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-13 18:35:25 -05:00
|
|
|
void AMDemodGUI::channelMarkerChangedByCursor()
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2017-11-13 18:35:25 -05:00
|
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
2017-11-13 19:23:01 -05:00
|
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
2015-05-11 20:53:35 -04:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2017-11-14 16:58:35 -05:00
|
|
|
void AMDemodGUI::channelMarkerHighlightedByCursor()
|
|
|
|
{
|
|
|
|
setHighlighted(m_channelMarker.getHighlighted());
|
|
|
|
}
|
|
|
|
|
2017-05-17 17:34:14 -04:00
|
|
|
void AMDemodGUI::on_deltaFrequency_changed(qint64 value)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2017-05-17 17:34:14 -04:00
|
|
|
m_channelMarker.setCenterFrequency(value);
|
2017-09-26 17:53:35 -04:00
|
|
|
m_settings.m_inputFrequencyOffset = m_channelMarker.getCenterFrequency();
|
|
|
|
applySettings();
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2018-05-13 11:27:24 -04:00
|
|
|
void AMDemodGUI::on_pll_toggled(bool checked)
|
|
|
|
{
|
2018-05-19 21:50:22 -04:00
|
|
|
if (!checked)
|
|
|
|
{
|
2018-05-13 11:27:24 -04:00
|
|
|
ui->pll->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
2018-05-19 21:50:22 -04:00
|
|
|
ui->pll->setToolTip(tr("PLL for synchronous AM"));
|
2018-05-13 11:27:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
m_settings.m_pll = checked;
|
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2018-05-13 16:30:50 -04: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 17:53:35 -04:00
|
|
|
void AMDemodGUI::on_bandpassEnable_toggled(bool checked)
|
2017-05-12 13:21:52 -04:00
|
|
|
{
|
2017-09-26 17:53:35 -04:00
|
|
|
m_settings.m_bandpassEnable = checked;
|
2017-05-12 13:21:52 -04:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2015-05-11 20:53:35 -04:00
|
|
|
void AMDemodGUI::on_rfBW_valueChanged(int value)
|
|
|
|
{
|
2016-11-30 18:10:34 -05:00
|
|
|
ui->rfBWText->setText(QString("%1 kHz").arg(value / 10.0, 0, 'f', 1));
|
2016-11-30 10:42:06 -05:00
|
|
|
m_channelMarker.setBandwidth(value * 100);
|
2017-09-26 17:53:35 -04:00
|
|
|
m_settings.m_rfBandwidth = value * 100;
|
2015-05-11 20:53:35 -04:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::on_volume_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->volumeText->setText(QString("%1").arg(value / 10.0, 0, 'f', 1));
|
2017-09-26 17:53:35 -04:00
|
|
|
m_settings.m_volume = value / 10.0;
|
2015-05-11 20:53:35 -04:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::on_squelch_valueChanged(int value)
|
|
|
|
{
|
|
|
|
ui->squelchText->setText(QString("%1 dB").arg(value));
|
2017-09-26 17:53:35 -04:00
|
|
|
m_settings.m_squelch = value;
|
2015-05-11 20:53:35 -04:00
|
|
|
applySettings();
|
|
|
|
}
|
|
|
|
|
2017-09-26 17:53:35 -04:00
|
|
|
void AMDemodGUI::on_audioMute_toggled(bool checked)
|
2015-12-26 12:23:55 -05:00
|
|
|
{
|
2017-09-26 17:53:35 -04:00
|
|
|
m_settings.m_audioMute = checked;
|
2015-12-26 12:23:55 -05:00
|
|
|
applySettings();
|
|
|
|
}
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2018-11-12 18:45:03 -05:00
|
|
|
void AMDemodGUI::onWidgetRolled(QWidget* widget, bool rollDown)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2018-11-12 18:45:03 -05:00
|
|
|
(void) widget;
|
|
|
|
(void) rollDown;
|
2015-05-11 20:53:35 -04:00
|
|
|
/*
|
|
|
|
if((widget == ui->spectrumContainer) && (m_nfmDemod != NULL))
|
|
|
|
m_nfmDemod->setSpectrum(m_threadedSampleSink->getMessageQueue(), rollDown);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2017-08-25 23:32:01 -04:00
|
|
|
void AMDemodGUI::onMenuDialogCalled(const QPoint &p)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2019-05-09 15:07:05 -04: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 10:31:15 -04:00
|
|
|
else if ((m_contextMenuType == ContextMenuStreamSettings) && (m_deviceUISet->m_deviceMIMOEngine))
|
|
|
|
{
|
2019-05-20 19:52:13 -04: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 18:58:26 -04:00
|
|
|
m_channelMarker.clearStreamIndexes();
|
|
|
|
m_channelMarker.addStreamIndex(m_settings.m_streamIndex);
|
2019-05-26 20:52:33 -04:00
|
|
|
displayStreamIndex();
|
2019-05-20 19:52:13 -04:00
|
|
|
applySettings();
|
2019-05-20 10:31:15 -04:00
|
|
|
}
|
2017-11-13 18:35:25 -05:00
|
|
|
|
2019-05-09 15:07:05 -04:00
|
|
|
resetContextMenuType();
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2017-11-08 19:03:05 -05:00
|
|
|
AMDemodGUI::AMDemodGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSampleSink *rxChannel, QWidget* parent) :
|
2015-05-11 20:53:35 -04:00
|
|
|
RollupWidget(parent),
|
|
|
|
ui(new Ui::AMDemodGUI),
|
|
|
|
m_pluginAPI(pluginAPI),
|
2017-10-31 03:24:05 -04:00
|
|
|
m_deviceUISet(deviceUISet),
|
2015-08-24 17:39:43 -04:00
|
|
|
m_channelMarker(this),
|
2015-10-04 05:22:37 -04:00
|
|
|
m_doApplySettings(true),
|
2017-08-17 11:21:38 -04:00
|
|
|
m_squelchOpen(false),
|
2018-05-13 16:30:50 -04:00
|
|
|
m_samUSB(true),
|
2017-08-17 11:21:38 -04:00
|
|
|
m_tickCount(0)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
|
|
|
connect(this, SIGNAL(widgetRolled(QWidget*,bool)), this, SLOT(onWidgetRolled(QWidget*,bool)));
|
2017-08-25 23:32:01 -04:00
|
|
|
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &)));
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2018-03-22 01:34:51 -04:00
|
|
|
m_amDemod = reinterpret_cast<AMDemod*>(rxChannel); //new AMDemod(m_deviceUISet->m_deviceSourceAPI);
|
|
|
|
m_amDemod->setMessageQueueToGUI(getInputMessageQueue());
|
2016-05-11 12:29:01 -04:00
|
|
|
|
2017-10-24 07:45:10 -04:00
|
|
|
connect(&MainWindow::getInstance()->getMasterTimer(), SIGNAL(timeout()), this, SLOT(tick())); // 50 ms
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2018-03-26 12:41:09 -04:00
|
|
|
CRightClickEnabler *audioMuteRightClickEnabler = new CRightClickEnabler(ui->audioMute);
|
2018-12-16 18:34:14 -05:00
|
|
|
connect(audioMuteRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(audioSelect()));
|
2018-03-26 12:41:09 -04:00
|
|
|
|
2018-05-13 16:30:50 -04:00
|
|
|
CRightClickEnabler *samSidebandRightClickEnabler = new CRightClickEnabler(ui->ssb);
|
2018-12-16 18:34:14 -05:00
|
|
|
connect(samSidebandRightClickEnabler, SIGNAL(rightClick(const QPoint &)), this, SLOT(samSSBSelect()));
|
2018-05-13 16:30:50 -04:00
|
|
|
|
2017-05-17 17:34:14 -04: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 18:25:59 -05:00
|
|
|
ui->channelPowerMeter->setColorTheme(LevelMeterSignalDB::ColorGreenAndBlue);
|
2015-08-24 17:39:43 -04:00
|
|
|
|
2017-11-13 18:35:25 -05:00
|
|
|
m_channelMarker.blockSignals(true);
|
2015-08-24 17:39:43 -04:00
|
|
|
m_channelMarker.setColor(Qt::yellow);
|
2016-11-30 10:42:06 -05:00
|
|
|
m_channelMarker.setBandwidth(5000);
|
2015-08-24 17:39:43 -04:00
|
|
|
m_channelMarker.setCenterFrequency(0);
|
2017-08-25 23:32:01 -04:00
|
|
|
m_channelMarker.setTitle("AM Demodulator");
|
2017-11-13 18:35:25 -05:00
|
|
|
m_channelMarker.blockSignals(false);
|
|
|
|
m_channelMarker.setVisible(true); // activate signal on the last setting only
|
|
|
|
|
2017-08-25 23:32:01 -04:00
|
|
|
setTitleColor(m_channelMarker.getColor());
|
2017-10-01 10:52:23 -04:00
|
|
|
m_settings.setChannelMarker(&m_channelMarker);
|
2016-05-16 13:37:53 -04:00
|
|
|
|
2017-11-22 19:19:32 -05:00
|
|
|
m_deviceUISet->registerRxChannelInstance(AMDemod::m_channelIdURI, this);
|
2017-10-31 03:24:05 -04:00
|
|
|
m_deviceUISet->addChannelMarker(&m_channelMarker);
|
|
|
|
m_deviceUISet->addRollupWidget(this);
|
2015-05-11 20:53:35 -04:00
|
|
|
|
2017-11-13 18:35:25 -05:00
|
|
|
connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor()));
|
2017-11-14 16:58:35 -05:00
|
|
|
connect(&m_channelMarker, SIGNAL(highlightedByCursor()), this, SLOT(channelMarkerHighlightedByCursor()));
|
2018-03-22 01:34:51 -04:00
|
|
|
connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));
|
2017-11-13 18:35:25 -05:00
|
|
|
|
2018-05-13 16:30:50 -04: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 18:35:25 -05:00
|
|
|
displaySettings();
|
2017-08-25 23:32:01 -04:00
|
|
|
applySettings(true);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
AMDemodGUI::~AMDemodGUI()
|
|
|
|
{
|
2017-10-31 17:37:57 -04:00
|
|
|
m_deviceUISet->removeRxChannelInstance(this);
|
2017-11-08 19:03:05 -05:00
|
|
|
delete m_amDemod; // TODO: check this: when the GUI closes it has to delete the demodulator
|
2015-05-11 20:53:35 -04:00
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2015-08-18 19:02:52 -04:00
|
|
|
void AMDemodGUI::blockApplySettings(bool block)
|
|
|
|
{
|
|
|
|
m_doApplySettings = !block;
|
|
|
|
}
|
|
|
|
|
2017-08-25 23:32:01 -04:00
|
|
|
void AMDemodGUI::applySettings(bool force)
|
2015-05-11 20:53:35 -04:00
|
|
|
{
|
2015-08-18 19:02:52 -04:00
|
|
|
if (m_doApplySettings)
|
|
|
|
{
|
2017-09-27 18:24:03 -04:00
|
|
|
AMDemod::MsgConfigureChannelizer* channelConfigMsg = AMDemod::MsgConfigureChannelizer::create(
|
2018-03-26 05:55:45 -04:00
|
|
|
m_amDemod->getAudioSampleRate(), m_channelMarker.getCenterFrequency());
|
2017-09-27 18:24:03 -04:00
|
|
|
m_amDemod->getInputMessageQueue()->push(channelConfigMsg);
|
2015-08-17 02:29:34 -04:00
|
|
|
|
|
|
|
|
2017-09-26 18:16:35 -04:00
|
|
|
AMDemod::MsgConfigureAMDemod* message = AMDemod::MsgConfigureAMDemod::create( m_settings, force);
|
|
|
|
m_amDemod->getInputMessageQueue()->push(message);
|
2015-08-18 19:02:52 -04:00
|
|
|
}
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2017-09-26 17:53:35 -04:00
|
|
|
void AMDemodGUI::displaySettings()
|
|
|
|
{
|
2017-10-11 19:21:30 -04:00
|
|
|
m_channelMarker.blockSignals(true);
|
|
|
|
m_channelMarker.setCenterFrequency(m_settings.m_inputFrequencyOffset);
|
|
|
|
m_channelMarker.setBandwidth(m_settings.m_rfBandwidth);
|
2017-11-18 21:38:07 -05:00
|
|
|
m_channelMarker.setTitle(m_settings.m_title);
|
2017-10-11 19:21:30 -04:00
|
|
|
m_channelMarker.blockSignals(false);
|
2017-11-13 18:35:25 -05:00
|
|
|
m_channelMarker.setColor(m_settings.m_rgbColor); // activate signal on the last setting only
|
2017-10-11 19:21:30 -04:00
|
|
|
|
2017-11-13 18:35:25 -05:00
|
|
|
setTitleColor(m_settings.m_rgbColor);
|
2017-10-11 19:21:30 -04:00
|
|
|
setWindowTitle(m_channelMarker.getTitle());
|
|
|
|
|
2017-09-26 17:53:35 -04:00
|
|
|
blockApplySettings(true);
|
|
|
|
|
2017-11-13 18:35:25 -05:00
|
|
|
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
|
|
|
|
|
2017-09-26 17:53:35 -04: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 11:27:24 -04:00
|
|
|
ui->pll->setChecked(m_settings.m_pll);
|
2017-09-26 17:53:35 -04:00
|
|
|
|
2018-12-16 15:22:46 -05:00
|
|
|
qDebug() << "AMDemodGUI::displaySettings:"
|
|
|
|
<< " m_pll: " << m_settings.m_pll
|
|
|
|
<< " m_syncAMOperation: " << m_settings.m_syncAMOperation;
|
|
|
|
|
2018-12-16 14:41:21 -05:00
|
|
|
if (m_settings.m_pll)
|
|
|
|
{
|
|
|
|
if (m_settings.m_syncAMOperation == AMDemodSettings::SyncAMLSB)
|
|
|
|
{
|
2018-05-13 16:30:50 -04:00
|
|
|
m_samUSB = false;
|
2018-12-16 15:22:46 -05:00
|
|
|
ui->ssb->setChecked(true);
|
2018-05-13 16:30:50 -04:00
|
|
|
ui->ssb->setIcon(m_iconDSBLSB);
|
2018-12-16 14:41:21 -05:00
|
|
|
}
|
2018-12-16 15:22:46 -05:00
|
|
|
else if (m_settings.m_syncAMOperation == AMDemodSettings::SyncAMUSB)
|
2018-12-16 14:41:21 -05:00
|
|
|
{
|
2018-05-13 16:30:50 -04:00
|
|
|
m_samUSB = true;
|
2018-12-16 15:22:46 -05:00
|
|
|
ui->ssb->setChecked(true);
|
2018-05-13 16:30:50 -04:00
|
|
|
ui->ssb->setIcon(m_iconDSBUSB);
|
|
|
|
}
|
2018-12-16 15:22:46 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->ssb->setChecked(false);
|
|
|
|
}
|
2018-05-13 16:30:50 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-16 15:22:46 -05:00
|
|
|
ui->ssb->setChecked(false);
|
2018-05-13 16:30:50 -04:00
|
|
|
ui->ssb->setIcon(m_iconDSBUSB);
|
|
|
|
}
|
|
|
|
|
2019-05-20 10:31:15 -04:00
|
|
|
displayStreamIndex();
|
|
|
|
|
2017-09-26 17:53:35 -04:00
|
|
|
blockApplySettings(false);
|
|
|
|
}
|
|
|
|
|
2019-05-20 10:31:15 -04: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-11 20:53:35 -04:00
|
|
|
void AMDemodGUI::leaveEvent(QEvent*)
|
|
|
|
{
|
2015-08-24 17:39:43 -04:00
|
|
|
m_channelMarker.setHighlighted(false);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void AMDemodGUI::enterEvent(QEvent*)
|
|
|
|
{
|
2015-08-24 17:39:43 -04:00
|
|
|
m_channelMarker.setHighlighted(true);
|
2015-05-11 20:53:35 -04:00
|
|
|
}
|
|
|
|
|
2018-03-26 12:41:09 -04: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 16:30:50 -04: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 05:22:37 -04:00
|
|
|
void AMDemodGUI::tick()
|
|
|
|
{
|
2017-05-16 17:39:49 -04:00
|
|
|
double magsqAvg, magsqPeak;
|
2016-12-05 19:57:35 -05:00
|
|
|
int nbMagsqSamples;
|
|
|
|
m_amDemod->getMagSqLevels(magsqAvg, magsqPeak, nbMagsqSamples);
|
2017-05-16 17:39:49 -04:00
|
|
|
double powDbAvg = CalcDb::dbPower(magsqAvg);
|
|
|
|
double powDbPeak = CalcDb::dbPower(magsqPeak);
|
2016-12-05 19:57:35 -05:00
|
|
|
|
|
|
|
ui->channelPowerMeter->levelChanged(
|
|
|
|
(100.0f + powDbAvg) / 100.0f,
|
|
|
|
(100.0f + powDbPeak) / 100.0f,
|
|
|
|
nbMagsqSamples);
|
|
|
|
|
2017-08-17 11:21:38 -04:00
|
|
|
if (m_tickCount % 4 == 0) {
|
|
|
|
ui->channelPower->setText(QString::number(powDbAvg, 'f', 1));
|
|
|
|
}
|
2016-12-04 17:29:59 -05:00
|
|
|
|
2016-03-26 23:44:35 -04:00
|
|
|
bool squelchOpen = m_amDemod->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); }");
|
|
|
|
}
|
|
|
|
}
|
2017-08-17 11:21:38 -04:00
|
|
|
|
2018-05-13 11:27:24 -04: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-19 21:50:22 -04:00
|
|
|
|
|
|
|
int freq = (m_amDemod->getPllFrequency() * m_amDemod->getAudioSampleRate()) / (2.0*M_PI);
|
|
|
|
ui->pll->setToolTip(tr("PLL for synchronous AM. Freq = %1 Hz").arg(freq));
|
2018-05-13 11:27:24 -04:00
|
|
|
}
|
|
|
|
|
2017-08-17 11:21:38 -04:00
|
|
|
m_tickCount++;
|
2015-10-04 05:22:37 -04:00
|
|
|
}
|
|
|
|
|