| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2018 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 06:57:41 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01: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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QDebug>
 | 
					
						
							|  |  |  | #include <QMessageBox>
 | 
					
						
							| 
									
										
										
										
											2020-04-01 23:17:26 +02:00
										 |  |  | #include <QFileDialog>
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <libairspyhf/airspyhf.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | #include <device/deviceapi.h>
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | #include "device/deviceuiset.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ui_airspyhfgui.h"
 | 
					
						
							|  |  |  | #include "gui/colormapper.h"
 | 
					
						
							|  |  |  | #include "gui/glspectrum.h"
 | 
					
						
							| 
									
										
										
										
											2018-12-25 11:01:18 +01:00
										 |  |  | #include "gui/basicdevicesettingsdialog.h"
 | 
					
						
							| 
									
										
										
										
											2022-12-20 10:31:15 +00:00
										 |  |  | #include "gui/dialogpositioner.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | #include "dsp/dspengine.h"
 | 
					
						
							|  |  |  | #include "dsp/dspcommands.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-05 08:38:47 +01:00
										 |  |  | #include "airspyhfgui.h"
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | AirspyHFGui::AirspyHFGui(DeviceUISet *deviceUISet, QWidget* parent) : | 
					
						
							| 
									
										
										
										
											2020-10-05 19:23:13 +02:00
										 |  |  | 	DeviceGUI(parent), | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	ui(new Ui::AirspyHFGui), | 
					
						
							|  |  |  | 	m_doApplySettings(true), | 
					
						
							|  |  |  | 	m_forceSettings(true), | 
					
						
							|  |  |  | 	m_settings(), | 
					
						
							|  |  |  | 	m_sampleSource(0), | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | 	m_lastEngineState(DeviceAPI::StNotStarted) | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-05-13 22:24:48 +02:00
										 |  |  |     m_deviceUISet = deviceUISet; | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     setAttribute(Qt::WA_DeleteOnClose, true); | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     m_sampleSource = (AirspyHFInput*) m_deviceUISet->m_deviceAPI->getSampleSource(); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     ui->setupUi(getContents()); | 
					
						
							| 
									
										
										
										
											2022-11-09 15:53:44 +00:00
										 |  |  |     sizeToContents(); | 
					
						
							| 
									
										
										
										
											2022-04-24 02:13:18 +02:00
										 |  |  |     getContents()->setStyleSheet("#AirspyHFGui { background-color: rgb(64, 64, 64); }"); | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     m_helpURL = "plugins/samplesource/airspyhf/readme.md"; | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold)); | 
					
						
							|  |  |  | 	updateFrequencyLimits(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	connect(&m_updateTimer, SIGNAL(timeout()), this, SLOT(updateHardware())); | 
					
						
							|  |  |  | 	connect(&m_statusTimer, SIGNAL(timeout()), this, SLOT(updateStatus())); | 
					
						
							|  |  |  | 	m_statusTimer.start(500); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |     connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(openDeviceSettingsDialog(const QPoint &))); | 
					
						
							| 
									
										
										
										
											2018-12-25 11:01:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	displaySettings(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m_rates = ((AirspyHFInput*) m_sampleSource)->getSampleRates(); | 
					
						
							|  |  |  | 	displaySampleRates(); | 
					
						
							|  |  |  |     connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection); | 
					
						
							| 
									
										
										
										
											2018-05-25 19:28:57 +02:00
										 |  |  |     m_sampleSource->setMessageQueueToGUI(&m_inputMessageQueue); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     sendSettings(); | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  |     makeUIConnections(); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AirspyHFGui::~AirspyHFGui() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-05 15:40:09 +01:00
										 |  |  |     m_statusTimer.stop(); | 
					
						
							|  |  |  |     m_updateTimer.stop(); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	delete ui; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::destroy() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::resetToDefaults() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_settings.resetToDefaults(); | 
					
						
							|  |  |  | 	displaySettings(); | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_forceSettings = true; | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QByteArray AirspyHFGui::serialize() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AirspyHFGui::deserialize(const QByteArray& data) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  | 	if (m_settings.deserialize(data)) { | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 		displaySettings(); | 
					
						
							|  |  |  | 		m_forceSettings = true; | 
					
						
							|  |  |  | 		sendSettings(); | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		resetToDefaults(); | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AirspyHFGui::handleMessage(const Message& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (AirspyHFInput::MsgConfigureAirspyHF::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const AirspyHFInput::MsgConfigureAirspyHF& cfg = (AirspyHFInput::MsgConfigureAirspyHF&) message; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (cfg.getForce()) { | 
					
						
							|  |  |  |             m_settings = cfg.getSettings(); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             m_settings.applySettings(cfg.getSettingsKeys(), cfg.getSettings()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |         blockApplySettings(true); | 
					
						
							|  |  |  |         displaySettings(); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (AirspyHFInput::MsgStartStop::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         AirspyHFInput::MsgStartStop& notif = (AirspyHFInput::MsgStartStop&) message; | 
					
						
							|  |  |  |         blockApplySettings(true); | 
					
						
							|  |  |  |         ui->startStop->setChecked(notif.getStartStop()); | 
					
						
							|  |  |  |         blockApplySettings(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::handleInputMessages() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Message* message; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while ((message = m_inputMessageQueue.pop()) != 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("AirspyHFGui::handleInputMessages: message: %s", message->getIdentifier()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (DSPSignalNotification::match(*message)) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             DSPSignalNotification* notif = (DSPSignalNotification*) message; | 
					
						
							|  |  |  |             m_sampleRate = notif->getSampleRate(); | 
					
						
							|  |  |  |             m_deviceCenterFrequency = notif->getCenterFrequency(); | 
					
						
							|  |  |  |             qDebug("AirspyGui::handleInputMessages: DSPSignalNotification: SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency()); | 
					
						
							|  |  |  |             updateSampleRateAndFrequency(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             delete message; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (handleMessage(*message)) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 delete message; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::updateSampleRateAndFrequency() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_deviceUISet->getSpectrum()->setSampleRate(m_sampleRate); | 
					
						
							|  |  |  |     m_deviceUISet->getSpectrum()->setCenterFrequency(m_deviceCenterFrequency); | 
					
						
							|  |  |  |     ui->deviceRateText->setText(tr("%1k").arg((float)m_sampleRate / 1000)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::updateFrequencyLimits() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     // values in kHz
 | 
					
						
							|  |  |  |     qint64 deltaFrequency = m_settings.m_transverterMode ? m_settings.m_transverterDeltaFrequency/1000 : 0; | 
					
						
							| 
									
										
										
										
											2018-01-12 00:24:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qint64 minLimit; | 
					
						
							|  |  |  |     qint64 maxLimit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch(m_settings.m_bandIndex) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |         minLimit = AirspyHFInput::loLowLimitFreqVHF/1000 + deltaFrequency; | 
					
						
							|  |  |  |         maxLimit = AirspyHFInput::loHighLimitFreqVHF/1000 + deltaFrequency; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         minLimit = AirspyHFInput::loLowLimitFreqHF/1000 + deltaFrequency; | 
					
						
							|  |  |  |         maxLimit = AirspyHFInput::loHighLimitFreqHF/1000 + deltaFrequency; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-16 15:04:54 +01:00
										 |  |  |     if (m_settings.m_transverterMode) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         minLimit = minLimit < 0 ? 0 : minLimit > 999999999 ? 999999999 : minLimit; | 
					
						
							|  |  |  |         maxLimit = maxLimit < 0 ? 0 : maxLimit > 999999999 ? 999999999 : maxLimit; | 
					
						
							|  |  |  |         ui->centerFrequency->setValueRange(9, minLimit, maxLimit); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         minLimit = minLimit < 0 ? 0 : minLimit > 999999 ? 999999 : minLimit; | 
					
						
							|  |  |  |         maxLimit = maxLimit < 0 ? 0 : maxLimit > 999999 ? 999999 : maxLimit; | 
					
						
							|  |  |  |         ui->centerFrequency->setValueRange(6, minLimit, maxLimit); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |     qDebug("AirspyHFGui::updateFrequencyLimits: delta: %lld min: %lld max: %lld", deltaFrequency, minLimit, maxLimit); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::displaySettings() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-01-12 00:56:38 +01:00
										 |  |  |     blockApplySettings(true); | 
					
						
							| 
									
										
										
										
											2018-01-15 00:32:59 +01:00
										 |  |  |     ui->band->blockSignals(true); | 
					
						
							|  |  |  |     m_settings.m_bandIndex = m_settings.m_centerFrequency <= 31000000UL ? 0 : 1; // override
 | 
					
						
							| 
									
										
										
										
											2018-01-12 00:56:38 +01:00
										 |  |  |     ui->band->setCurrentIndex(m_settings.m_bandIndex); | 
					
						
							| 
									
										
										
										
											2018-01-15 00:32:59 +01:00
										 |  |  |     updateFrequencyLimits(); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |     ui->transverter->setDeltaFrequency(m_settings.m_transverterDeltaFrequency); | 
					
						
							|  |  |  |     ui->transverter->setDeltaFrequencyActive(m_settings.m_transverterMode); | 
					
						
							| 
									
										
										
										
											2020-06-23 05:04:41 +02:00
										 |  |  |     ui->transverter->setIQOrder(m_settings.m_iqOrder); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	ui->centerFrequency->setValue(m_settings.m_centerFrequency / 1000); | 
					
						
							| 
									
										
										
										
											2018-01-17 02:08:01 +01:00
										 |  |  | 	ui->LOppm->setValue(m_settings.m_LOppmTenths); | 
					
						
							|  |  |  | 	ui->LOppmText->setText(QString("%1").arg(QString::number(m_settings.m_LOppmTenths/10.0, 'f', 1))); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	ui->sampleRate->setCurrentIndex(m_settings.m_devSampleRateIndex); | 
					
						
							|  |  |  | 	ui->decim->setCurrentIndex(m_settings.m_log2Decim); | 
					
						
							| 
									
										
										
										
											2018-01-15 00:32:59 +01:00
										 |  |  |     ui->band->blockSignals(false); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |     ui->dsp->setChecked(m_settings.m_useDSP); | 
					
						
							|  |  |  |     ui->lna->setChecked(m_settings.m_useLNA); | 
					
						
							|  |  |  |     ui->att->setCurrentIndex(m_settings.m_attenuatorSteps); | 
					
						
							| 
									
										
										
										
											2019-01-14 09:25:08 +01:00
										 |  |  | 	ui->dcOffset->setChecked(m_settings.m_dcBlock); | 
					
						
							|  |  |  | 	ui->iqImbalance->setChecked(m_settings.m_iqCorrection); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |     displayAGC(); | 
					
						
							| 
									
										
										
										
											2018-01-15 00:32:59 +01:00
										 |  |  |     blockApplySettings(false); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::displaySampleRates() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int savedIndex = m_settings.m_devSampleRateIndex; | 
					
						
							|  |  |  | 	ui->sampleRate->blockSignals(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (m_rates.size() > 0) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ui->sampleRate->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (unsigned int i = 0; i < m_rates.size(); i++) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		    int sampleRate = m_rates[i]/1000; | 
					
						
							|  |  |  | 			ui->sampleRate->addItem(QString("%1").arg(QString("%1").arg(sampleRate, 5, 10, QChar(' ')))); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ui->sampleRate->blockSignals(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (savedIndex < m_rates.size()) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ui->sampleRate->setCurrentIndex(savedIndex); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		ui->sampleRate->setCurrentIndex((int) m_rates.size()-1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  | void AirspyHFGui::displayAGC() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_settings.m_useAGC) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (m_settings.m_agcHigh) { | 
					
						
							|  |  |  |             ui->agc->setCurrentIndex(2); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ui->agc->setCurrentIndex(1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         ui->agc->setCurrentIndex(0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | void AirspyHFGui::sendSettings() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if(!m_updateTimer.isActive()) | 
					
						
							|  |  |  | 		m_updateTimer.start(100); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_centerFrequency_changed(quint64 value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_settings.m_centerFrequency = value * 1000; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("centerFrequency"); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 02:08:01 +01:00
										 |  |  | void AirspyHFGui::on_LOppm_valueChanged(int value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_LOppmTenths = value; | 
					
						
							|  |  |  |     ui->LOppmText->setText(QString("%1").arg(QString::number(m_settings.m_LOppmTenths/10.0, 'f', 1))); | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("LOppmTenths"); | 
					
						
							| 
									
										
										
										
											2018-01-17 02:08:01 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_resetLOppm_clicked() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ui->LOppm->setValue(0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | void AirspyHFGui::on_sampleRate_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("devSampleRateIndex"); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	m_settings.m_devSampleRateIndex = index; | 
					
						
							|  |  |  | 	sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_decim_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  | 	if ((index < 0) || (index > 8)) { | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	m_settings.m_log2Decim = index; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("log2Decim"); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_startStop_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_doApplySettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         AirspyHFInput::MsgStartStop *message = AirspyHFInput::MsgStartStop::create(checked); | 
					
						
							|  |  |  |         m_sampleSource->getInputMessageQueue()->push(message); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_transverter_clicked() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_transverterMode = ui->transverter->getDeltaFrequencyAcive(); | 
					
						
							|  |  |  |     m_settings.m_transverterDeltaFrequency = ui->transverter->getDeltaFrequency(); | 
					
						
							| 
									
										
										
										
											2020-06-23 05:04:41 +02:00
										 |  |  |     m_settings.m_iqOrder = ui->transverter->getIQOrder(); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |     qDebug("AirspyHFGui::on_transverter_clicked: %lld Hz %s", m_settings.m_transverterDeltaFrequency, m_settings.m_transverterMode ? "on" : "off"); | 
					
						
							|  |  |  |     updateFrequencyLimits(); | 
					
						
							|  |  |  |     m_settings.m_centerFrequency = ui->centerFrequency->getValueNew()*1000; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("transverterMode"); | 
					
						
							|  |  |  |     m_settingsKeys.append("transverterDeltaFrequency"); | 
					
						
							|  |  |  |     m_settingsKeys.append("iqOrder"); | 
					
						
							|  |  |  |     m_settingsKeys.append("centerFrequency"); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 00:24:54 +01:00
										 |  |  | void AirspyHFGui::on_band_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((index < 0) || (index > 1)) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_settings.m_bandIndex = index; | 
					
						
							|  |  |  |     updateFrequencyLimits(); | 
					
						
							| 
									
										
										
										
											2018-01-13 03:57:23 +01:00
										 |  |  |     qDebug("AirspyHFGui::on_band_currentIndexChanged: freq: %llu", ui->centerFrequency->getValueNew() * 1000); | 
					
						
							|  |  |  |     m_settings.m_centerFrequency = ui->centerFrequency->getValueNew() * 1000; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("centerFrequency"); | 
					
						
							|  |  |  |     m_settingsKeys.append("bandIndex"); | 
					
						
							| 
									
										
										
										
											2018-01-12 00:24:54 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  | void AirspyHFGui::on_dsp_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_useDSP = checked; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("useDSP"); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_lna_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_settings.m_useLNA = checked; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("useLNA"); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |     sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_agc_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (index == 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_useAGC = false; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |         m_settingsKeys.append("useAGC"); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |         sendSettings(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (index <= 2) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_useAGC = true; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |         m_settingsKeys.append("useAGC"); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |         if (index == 1) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |             m_settings.m_agcHigh = false; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |             m_settingsKeys.append("agcHigh"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |             m_settings.m_agcHigh = true; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |             m_settingsKeys.append("agcHigh"); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         sendSettings(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_att_currentIndexChanged(int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if ((index >= 0) && (index <= 8)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.m_attenuatorSteps = index; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |         m_settingsKeys.append("attenuatorSteps"); | 
					
						
							| 
									
										
										
										
											2019-01-14 02:36:33 +01:00
										 |  |  |         sendSettings(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-14 09:25:08 +01:00
										 |  |  | void AirspyHFGui::on_dcOffset_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_settings.m_dcBlock = checked; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("dcBlock"); | 
					
						
							| 
									
										
										
										
											2019-01-14 09:25:08 +01:00
										 |  |  | 	sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::on_iqImbalance_toggled(bool checked) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_settings.m_iqCorrection = checked; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.append("iqCorrection"); | 
					
						
							| 
									
										
										
										
											2019-01-14 09:25:08 +01:00
										 |  |  | 	sendSettings(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | void AirspyHFGui::updateHardware() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	qDebug() << "AirspyHFGui::updateHardware"; | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  | 	AirspyHFInput::MsgConfigureAirspyHF* message = AirspyHFInput::MsgConfigureAirspyHF::create(m_settings, m_settingsKeys, m_forceSettings); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	m_sampleSource->getInputMessageQueue()->push(message); | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |     m_settingsKeys.clear(); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 	m_forceSettings = false; | 
					
						
							|  |  |  | 	m_updateTimer.stop(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::updateStatus() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |     int state = m_deviceUISet->m_deviceAPI->state(); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(m_lastEngineState != state) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         switch(state) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StNotStarted: | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StIdle: | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : blue; }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StRunning: | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : green; }"); | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             case DeviceAPI::StError: | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |                 ui->startStop->setStyleSheet("QToolButton { background-color : red; }"); | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |                 QMessageBox::information(this, tr("Message"), m_deviceUISet->m_deviceAPI->errorMessage()); | 
					
						
							| 
									
										
										
										
											2018-01-11 02:21:29 +01:00
										 |  |  |                 break; | 
					
						
							|  |  |  |             default: | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_lastEngineState = state; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint32_t AirspyHFGui::getDevSampleRate(unsigned int rate_index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (rate_index < m_rates.size()) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return m_rates[rate_index]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return m_rates[0]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int AirspyHFGui::getDevSampleRateIndex(uint32_t sampeRate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	for (unsigned int i=0; i < m_rates.size(); i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (sampeRate == m_rates[i]) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return i; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return -1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-25 11:01:18 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::openDeviceSettingsDialog(const QPoint& p) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |     if (m_contextMenuType == ContextMenuDeviceSettings) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         BasicDeviceSettingsDialog dialog(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); | 
					
						
							| 
									
										
										
										
											2018-12-25 11:01:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         dialog.move(p); | 
					
						
							| 
									
										
										
										
											2022-12-20 10:31:15 +00:00
										 |  |  |         new DialogPositioner(&dialog, false); | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         dialog.exec(); | 
					
						
							| 
									
										
										
										
											2018-12-25 11:01:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         m_settings.m_useReverseAPI = dialog.useReverseAPI(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIAddress = dialog.getReverseAPIAddress(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIPort = dialog.getReverseAPIPort(); | 
					
						
							|  |  |  |         m_settings.m_reverseAPIDeviceIndex = dialog.getReverseAPIDeviceIndex(); | 
					
						
							| 
									
										
										
										
											2022-10-22 11:26:13 +02:00
										 |  |  |         m_settingsKeys.append("useReverseAPI"); | 
					
						
							|  |  |  |         m_settingsKeys.append("reverseAPIAddress"); | 
					
						
							|  |  |  |         m_settingsKeys.append("reverseAPIPort"); | 
					
						
							|  |  |  |         m_settingsKeys.append("reverseAPIDeviceIndex"); | 
					
						
							| 
									
										
										
										
											2018-12-25 11:01:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-17 01:31:50 +02:00
										 |  |  |         sendSettings(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     resetContextMenuType(); | 
					
						
							| 
									
										
										
										
											2018-12-25 11:01:18 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-07 16:32:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void AirspyHFGui::makeUIConnections() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QObject::connect(ui->centerFrequency, &ValueDial::changed, this, &AirspyHFGui::on_centerFrequency_changed); | 
					
						
							|  |  |  |     QObject::connect(ui->LOppm, &QSlider::valueChanged, this, &AirspyHFGui::on_LOppm_valueChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->resetLOppm, &QPushButton::clicked, this, &AirspyHFGui::on_resetLOppm_clicked); | 
					
						
							|  |  |  |     QObject::connect(ui->dcOffset, &ButtonSwitch::toggled, this, &AirspyHFGui::on_dcOffset_toggled); | 
					
						
							|  |  |  |     QObject::connect(ui->iqImbalance, &ButtonSwitch::toggled, this, &AirspyHFGui::on_iqImbalance_toggled); | 
					
						
							|  |  |  |     QObject::connect(ui->sampleRate, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &AirspyHFGui::on_sampleRate_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->decim, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &AirspyHFGui::on_decim_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->startStop, &ButtonSwitch::toggled, this, &AirspyHFGui::on_startStop_toggled); | 
					
						
							|  |  |  |     QObject::connect(ui->transverter, &TransverterButton::clicked, this, &AirspyHFGui::on_transverter_clicked); | 
					
						
							|  |  |  |     QObject::connect(ui->band, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &AirspyHFGui::on_band_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->dsp, &ButtonSwitch::toggled, this, &AirspyHFGui::on_dsp_toggled); | 
					
						
							|  |  |  |     QObject::connect(ui->lna, &ButtonSwitch::toggled, this, &AirspyHFGui::on_lna_toggled); | 
					
						
							|  |  |  |     QObject::connect(ui->agc, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &AirspyHFGui::on_agc_currentIndexChanged); | 
					
						
							|  |  |  |     QObject::connect(ui->att, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &AirspyHFGui::on_att_currentIndexChanged); | 
					
						
							|  |  |  | } |