| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2017 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:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02: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>
 | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  | #include <QNetworkReply>
 | 
					
						
							|  |  |  | #include <QBuffer>
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  | #include "SWGDeviceSettings.h"
 | 
					
						
							|  |  |  | #include "SWGDeviceState.h"
 | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | #include "SWGDeviceReport.h"
 | 
					
						
							|  |  |  | #include "SWGPlutoSdrOutputReport.h"
 | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | #include "dsp/dspcommands.h"
 | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  | #include "dsp/dspengine.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | #include "device/deviceapi.h"
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | #include "plutosdr/deviceplutosdrparams.h"
 | 
					
						
							|  |  |  | #include "plutosdr/deviceplutosdrbox.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "plutosdroutput.h"
 | 
					
						
							|  |  |  | #include "plutosdroutputthread.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-29 14:51:56 +01:00
										 |  |  | #define PLUTOSDR_BLOCKSIZE_SAMPLES (16*1024) //complex samples per buffer (must be multiple of 64)
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | MESSAGE_CLASS_DEFINITION(PlutoSDROutput::MsgConfigurePlutoSDR, Message) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  | MESSAGE_CLASS_DEFINITION(PlutoSDROutput::MsgStartStop, Message) | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  | PlutoSDROutput::PlutoSDROutput(DeviceAPI *deviceAPI) : | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     m_deviceAPI(deviceAPI), | 
					
						
							|  |  |  |     m_deviceDescription("PlutoSDROutput"), | 
					
						
							| 
									
										
										
										
											2017-09-20 00:21:06 +02:00
										 |  |  |     m_settings(), | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     m_running(false), | 
					
						
							|  |  |  |     m_plutoTxBuffer(0), | 
					
						
							|  |  |  |     m_plutoSDROutputThread(0) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-21 00:27:08 +02:00
										 |  |  |     m_deviceAPI->setNbSinkStreams(1); | 
					
						
							| 
									
										
										
										
											2018-02-24 10:29:27 +01:00
										 |  |  |     m_deviceSampleRates.m_addaConnvRate = 0; | 
					
						
							|  |  |  |     m_deviceSampleRates.m_bbRateHz = 0; | 
					
						
							|  |  |  |     m_deviceSampleRates.m_firRate = 0; | 
					
						
							|  |  |  |     m_deviceSampleRates.m_hb1Rate = 0; | 
					
						
							|  |  |  |     m_deviceSampleRates.m_hb2Rate = 0; | 
					
						
							|  |  |  |     m_deviceSampleRates.m_hb3Rate = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     suspendBuddies(); | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     m_open = openDevice(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!m_open) { | 
					
						
							|  |  |  |         qCritical("PlutoSDRInput::PlutoSDRInput: cannot open device"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     resumeBuddies(); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     m_networkManager = new QNetworkAccessManager(); | 
					
						
							| 
									
										
										
										
											2022-03-23 22:32:23 +01:00
										 |  |  |     QObject::connect( | 
					
						
							|  |  |  |         m_networkManager, | 
					
						
							|  |  |  |         &QNetworkAccessManager::finished, | 
					
						
							|  |  |  |         this, | 
					
						
							|  |  |  |         &PlutoSDROutput::networkManagerFinished | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PlutoSDROutput::~PlutoSDROutput() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-03-23 22:32:23 +01:00
										 |  |  |     QObject::disconnect( | 
					
						
							|  |  |  |         m_networkManager, | 
					
						
							|  |  |  |         &QNetworkAccessManager::finished, | 
					
						
							|  |  |  |         this, | 
					
						
							|  |  |  |         &PlutoSDROutput::networkManagerFinished | 
					
						
							|  |  |  |     ); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     delete m_networkManager; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     suspendBuddies(); | 
					
						
							|  |  |  |     closeDevice(); | 
					
						
							|  |  |  |     resumeBuddies(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::destroy() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     delete this; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-25 12:59:44 +01:00
										 |  |  | void PlutoSDROutput::init() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     applySettings(m_settings, true); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | bool PlutoSDROutput::start() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_deviceShared.m_deviceParams->getBox()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qCritical("PlutoSDROutput::start: device not open"); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (m_running) { | 
					
						
							|  |  |  |          stop(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // start / stop streaming is done in the thread.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-24 10:29:27 +01:00
										 |  |  |     m_plutoSDROutputThread = new PlutoSDROutputThread(PLUTOSDR_BLOCKSIZE_SAMPLES, m_deviceShared.m_deviceParams->getBox(), &m_sampleSourceFifo); | 
					
						
							|  |  |  |     qDebug("PlutoSDROutput::start: thread created"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     applySettings(m_settings, true); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     m_plutoSDROutputThread->setLog2Interpolation(m_settings.m_log2Interp); | 
					
						
							|  |  |  |     m_plutoSDROutputThread->startWork(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_deviceShared.m_thread = m_plutoSDROutputThread; | 
					
						
							|  |  |  |     m_running = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::stop() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_plutoSDROutputThread != 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_plutoSDROutputThread->stopWork(); | 
					
						
							|  |  |  |         delete m_plutoSDROutputThread; | 
					
						
							|  |  |  |         m_plutoSDROutputThread = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_deviceShared.m_thread = 0; | 
					
						
							|  |  |  |     m_running = false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | QByteArray PlutoSDROutput::serialize() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_settings.serialize(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool PlutoSDROutput::deserialize(const QByteArray& data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     bool success = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!m_settings.deserialize(data)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_settings.resetToDefaults(); | 
					
						
							|  |  |  |         success = false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     MsgConfigurePlutoSDR* message = MsgConfigurePlutoSDR::create(m_settings, true); | 
					
						
							|  |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgConfigurePlutoSDR* messageToGUI = MsgConfigurePlutoSDR::create(m_settings, true); | 
					
						
							|  |  |  |         m_guiMessageQueue->push(messageToGUI); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return success; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | const QString& PlutoSDROutput::getDeviceDescription() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_deviceDescription; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | int PlutoSDROutput::getSampleRate() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (m_settings.m_devSampleRate / (1<<m_settings.m_log2Interp)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | quint64 PlutoSDROutput::getCenterFrequency() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_settings.m_centerFrequency; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-28 04:04:50 +01:00
										 |  |  | void PlutoSDROutput::setCenterFrequency(qint64 centerFrequency) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PlutoSDROutputSettings settings = m_settings; | 
					
						
							|  |  |  |     settings.m_centerFrequency = centerFrequency; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     MsgConfigurePlutoSDR* message = MsgConfigurePlutoSDR::create(settings, false); | 
					
						
							|  |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgConfigurePlutoSDR* messageToGUI = MsgConfigurePlutoSDR::create(settings, false); | 
					
						
							|  |  |  |         m_guiMessageQueue->push(messageToGUI); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | bool PlutoSDROutput::handleMessage(const Message& message) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (MsgConfigurePlutoSDR::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgConfigurePlutoSDR& conf = (MsgConfigurePlutoSDR&) message; | 
					
						
							|  |  |  |         qDebug() << "PlutoSDROutput::handleMessage: MsgConfigurePlutoSDR"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!applySettings(conf.getSettings(), conf.getForce())) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             qDebug("PlutoSDROutput::handleMessage config error"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-20 18:25:54 +02:00
										 |  |  |     else if (DevicePlutoSDRShared::MsgCrossReportToBuddy::match(message)) // message from buddy
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         DevicePlutoSDRShared::MsgCrossReportToBuddy& conf = (DevicePlutoSDRShared::MsgCrossReportToBuddy&) message; | 
					
						
							|  |  |  |         m_settings.m_devSampleRate = conf.getDevSampleRate(); | 
					
						
							|  |  |  |         m_settings.m_lpfFIRlog2Interp = conf.getLpfFiRlog2IntDec(); | 
					
						
							|  |  |  |         m_settings.m_lpfFIRBW = conf.getLpfFirbw(); | 
					
						
							|  |  |  |         m_settings.m_LOppmTenths = conf.getLoPPMTenths(); | 
					
						
							|  |  |  |         PlutoSDROutputSettings newSettings = m_settings; | 
					
						
							|  |  |  |         newSettings.m_lpfFIREnable = conf.isLpfFirEnable(); | 
					
						
							|  |  |  |         applySettings(newSettings); | 
					
						
							| 
									
										
										
										
											2017-09-20 20:52:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							| 
									
										
										
										
											2017-09-20 18:25:54 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |     else if (MsgStartStop::match(message)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgStartStop& cmd = (MsgStartStop&) message; | 
					
						
							|  |  |  |         qDebug() << "PlutoSDROutput::handleMessage: MsgStartStop: " << (cmd.getStartStop() ? "start" : "stop"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (cmd.getStartStop()) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             if (m_deviceAPI->initDeviceEngine()) | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |                 m_deviceAPI->startDeviceEngine(); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             m_deviceAPI->stopDeviceEngine(); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |         if (m_settings.m_useReverseAPI) { | 
					
						
							|  |  |  |             webapiReverseSendStartStop(cmd.getStartStop()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool PlutoSDROutput::openDevice() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     m_sampleSourceFifo.resize(SampleSourceFifo::getSizePolicy(m_settings.m_devSampleRate)); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // look for Rx buddy and get reference to common parameters
 | 
					
						
							|  |  |  |     if (m_deviceAPI->getSourceBuddies().size() > 0) // then sink
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("PlutoSDROutput::openDevice: look at Rx buddy"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |         DeviceAPI *sourceBuddy = m_deviceAPI->getSourceBuddies()[0]; | 
					
						
							| 
									
										
										
										
											2018-01-08 00:37:15 +01:00
										 |  |  |         DevicePlutoSDRShared* buddySharedPtr = (DevicePlutoSDRShared*) sourceBuddy->getBuddySharedPtr(); | 
					
						
							|  |  |  |         m_deviceShared.m_deviceParams = buddySharedPtr->m_deviceParams; | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (m_deviceShared.m_deviceParams == 0) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             qCritical("PlutoSDROutput::openDevice: cannot get device parameters from Rx buddy"); | 
					
						
							|  |  |  |             return false; // the device params should have been created by the buddy
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             qDebug("PlutoSDROutput::openDevice: getting device parameters from Rx buddy"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     // There is no buddy then create the first PlutoSDR common parameters
 | 
					
						
							|  |  |  |     // open the device this will also populate common fields
 | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("PlutoSDROutput::openDevice: open device here"); | 
					
						
							|  |  |  |         m_deviceShared.m_deviceParams = new DevicePlutoSDRParams(); | 
					
						
							| 
									
										
										
										
											2019-12-16 01:03:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (m_deviceAPI->getHardwareUserArguments().size() != 0) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             QStringList kv = m_deviceAPI->getHardwareUserArguments().split('='); // expecting "uri=xxx"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (kv.size() > 1) | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |                 if (kv.at(0) == "uri") | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                     if (!m_deviceShared.m_deviceParams->openURI(kv.at(1).toStdString())) | 
					
						
							|  |  |  |                     { | 
					
						
							|  |  |  |                         qCritical("PlutoSDROutput::openDevice: open network device uri=%s failed", qPrintable(kv.at(1))); | 
					
						
							|  |  |  |                         return false; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                     qCritical("PlutoSDROutput::openDevice: unexpected user parameter key %s", qPrintable(kv.at(0))); | 
					
						
							| 
									
										
										
										
											2019-12-16 01:03:47 +01:00
										 |  |  |                     return false; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |                 qCritical("PlutoSDROutput::openDevice: unexpected user arguments %s", qPrintable(m_deviceAPI->getHardwareUserArguments())); | 
					
						
							| 
									
										
										
										
											2019-12-16 01:03:47 +01:00
										 |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             char serial[256]; | 
					
						
							|  |  |  |             strcpy(serial, qPrintable(m_deviceAPI->getSamplingDeviceSerial())); | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!m_deviceShared.m_deviceParams->open(serial)) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 qCritical("PlutoSDROutput::openDevice: open serial %s failed", serial); | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2019-12-16 01:03:47 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     m_deviceAPI->setBuddySharedPtr(&m_deviceShared); // propagate common parameters to API
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // acquire the channel
 | 
					
						
							|  |  |  |     DevicePlutoSDRBox *plutoBox =  m_deviceShared.m_deviceParams->getBox(); | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!plutoBox->openTx()) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qCritical("PlutoSDROutput::openDevice: cannot open Tx channel"); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-29 03:58:51 +01:00
										 |  |  |     m_plutoTxBuffer = plutoBox->createTxBuffer(PLUTOSDR_BLOCKSIZE_SAMPLES, false); // PlutoSDR buffer size is counted in number of (I,Q) samples
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::closeDevice() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_open) { // was never open
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_deviceAPI->getSourceBuddies().size() == 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         m_deviceShared.m_deviceParams->close(); | 
					
						
							|  |  |  |         delete m_deviceShared.m_deviceParams; | 
					
						
							|  |  |  |         m_deviceShared.m_deviceParams = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::suspendBuddies() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     // suspend Rx buddy's thread
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (unsigned int i = 0; i < m_deviceAPI->getSourceBuddies().size(); i++) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |         DeviceAPI *buddy = m_deviceAPI->getSourceBuddies()[i]; | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         DevicePlutoSDRShared *buddyShared = (DevicePlutoSDRShared *) buddy->getBuddySharedPtr(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (buddyShared->m_thread) { | 
					
						
							|  |  |  |             buddyShared->m_thread->stopWork(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::resumeBuddies() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     // resume Rx buddy's thread
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (unsigned int i = 0; i < m_deviceAPI->getSourceBuddies().size(); i++) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |         DeviceAPI *buddy = m_deviceAPI->getSourceBuddies()[i]; | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         DevicePlutoSDRShared *buddyShared = (DevicePlutoSDRShared *) buddy->getBuddySharedPtr(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (buddyShared->m_thread) { | 
					
						
							|  |  |  |             buddyShared->m_thread->startWork(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool PlutoSDROutput::applySettings(const PlutoSDROutputSettings& settings, bool force) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_open) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qCritical("PlutoSDROutput::applySettings: device not open"); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     bool forwardChangeOwnDSP    = false; | 
					
						
							|  |  |  |     bool forwardChangeOtherDSP  = false; | 
					
						
							|  |  |  |     bool ownThreadWasRunning    = false; | 
					
						
							|  |  |  |     bool suspendAllOtherThreads = false; // All others means Rx in fact
 | 
					
						
							|  |  |  |     DevicePlutoSDRBox *plutoBox =  m_deviceShared.m_deviceParams->getBox(); | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  |     QLocale loc; | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     QList<QString> reverseAPIKeys; | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qDebug().noquote() << "PlutoSDROutput::applySettings: center freq: " << m_settings.m_centerFrequency << " Hz" | 
					
						
							|  |  |  |             << " m_devSampleRate: " << loc.toString(m_settings.m_devSampleRate) << "S/s" | 
					
						
							|  |  |  |             << " m_LOppmTenths: " << m_settings.m_LOppmTenths | 
					
						
							|  |  |  |             << " m_lpfFIREnable: " << m_settings.m_lpfFIREnable | 
					
						
							|  |  |  |             << " m_lpfFIRBW: " << loc.toString(m_settings.m_lpfFIRBW) | 
					
						
							|  |  |  |             << " m_lpfFIRlog2Interp: " << m_settings.m_lpfFIRlog2Interp | 
					
						
							|  |  |  |             << " m_lpfFIRGain: " << m_settings.m_lpfFIRGain | 
					
						
							|  |  |  |             << " m_log2Interp: " << loc.toString(1<<m_settings.m_log2Interp) | 
					
						
							|  |  |  |             << " m_lpfBW: " << loc.toString(m_settings.m_lpfBW) | 
					
						
							|  |  |  |             << " m_att: " << m_settings.m_att | 
					
						
							|  |  |  |             << " m_antennaPath: " << (int) m_settings.m_antennaPath | 
					
						
							|  |  |  |             << " m_transverterMode: " << m_settings.m_transverterMode | 
					
						
							|  |  |  |             << " m_transverterDeltaFrequency: " << m_settings.m_transverterDeltaFrequency | 
					
						
							|  |  |  |             << " force: " << force; | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     if ((m_settings.m_devSampleRate != settings.m_devSampleRate) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("devSampleRate"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_lpfFIREnable != settings.m_lpfFIREnable) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("lpfFIREnable"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_lpfFIRlog2Interp != settings.m_lpfFIRlog2Interp) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("lpfFIRlog2Interp"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_lpfFIRBW != settings.m_lpfFIRBW) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("lpfFIRBW"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_lpfFIRGain != settings.m_lpfFIRGain) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("lpfFIRGain"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_LOppmTenths != settings.m_LOppmTenths) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("LOppmTenths"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     // determine if buddies threads or own thread need to be suspended
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // changes affecting all buddies can occur if
 | 
					
						
							|  |  |  |     //   - device to host sample rate is changed
 | 
					
						
							|  |  |  |     //   - FIR filter is enabled or disabled
 | 
					
						
							|  |  |  |     //   - FIR filter is changed
 | 
					
						
							|  |  |  |     //   - LO correction is changed
 | 
					
						
							|  |  |  |     if ((m_settings.m_devSampleRate != settings.m_devSampleRate) || | 
					
						
							|  |  |  |         (m_settings.m_lpfFIREnable != settings.m_lpfFIREnable) || | 
					
						
							|  |  |  |         (m_settings.m_lpfFIRlog2Interp != settings.m_lpfFIRlog2Interp) || | 
					
						
							|  |  |  |         (settings.m_lpfFIRBW != m_settings.m_lpfFIRBW) || | 
					
						
							|  |  |  |         (settings.m_lpfFIRGain != m_settings.m_lpfFIRGain) || | 
					
						
							|  |  |  |         (m_settings.m_LOppmTenths != settings.m_LOppmTenths) || force) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         suspendAllOtherThreads = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (suspendAllOtherThreads) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |         const std::vector<DeviceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies(); | 
					
						
							|  |  |  |         std::vector<DeviceAPI*>::const_iterator itSink = sourceBuddies.begin(); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         for (; itSink != sourceBuddies.end(); ++itSink) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             DevicePlutoSDRShared *buddySharedPtr = (DevicePlutoSDRShared *) (*itSink)->getBuddySharedPtr(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (buddySharedPtr->m_thread) { | 
					
						
							|  |  |  |                 buddySharedPtr->m_thread->stopWork(); | 
					
						
							|  |  |  |                 buddySharedPtr->m_threadWasRunning = true; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 buddySharedPtr->m_threadWasRunning = false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-22 03:04:42 +01:00
										 |  |  |     if (m_plutoSDROutputThread && m_plutoSDROutputThread->isRunning()) | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-02-22 03:04:42 +01:00
										 |  |  |         m_plutoSDROutputThread->stopWork(); | 
					
						
							|  |  |  |         ownThreadWasRunning = true; | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // apply settings
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Change affecting device sample rate chain and other buddies
 | 
					
						
							|  |  |  |     if ((m_settings.m_devSampleRate != settings.m_devSampleRate) || | 
					
						
							|  |  |  |         (m_settings.m_lpfFIREnable != settings.m_lpfFIREnable) || | 
					
						
							|  |  |  |         (m_settings.m_lpfFIRlog2Interp != settings.m_lpfFIRlog2Interp) || | 
					
						
							|  |  |  |         (settings.m_lpfFIRBW != m_settings.m_lpfFIRBW) || | 
					
						
							|  |  |  |         (settings.m_lpfFIRGain != m_settings.m_lpfFIRGain) || force) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         plutoBox->setFIR(settings.m_devSampleRate, settings.m_lpfFIRlog2Interp, DevicePlutoSDRBox::USE_TX, settings.m_lpfFIRBW, settings.m_lpfFIRGain); | 
					
						
							|  |  |  |         plutoBox->setFIREnable(settings.m_lpfFIREnable);   // eventually enable/disable FIR
 | 
					
						
							|  |  |  |         plutoBox->setSampleRate(settings.m_devSampleRate); // and set end point sample rate
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         plutoBox->getTxSampleRates(m_deviceSampleRates); // pick up possible new rates
 | 
					
						
							|  |  |  |         qDebug() << "PlutoSDRInput::applySettings: BBPLL(Hz): " << m_deviceSampleRates.m_bbRateHz | 
					
						
							|  |  |  |                  << " DAC: " << m_deviceSampleRates.m_addaConnvRate | 
					
						
							|  |  |  |                  << " <-HB3- " << m_deviceSampleRates.m_hb3Rate | 
					
						
							|  |  |  |                  << " <-HB2- " << m_deviceSampleRates.m_hb2Rate | 
					
						
							|  |  |  |                  << " <-HB1- " << m_deviceSampleRates.m_hb1Rate | 
					
						
							|  |  |  |                  << " <-FIR- " << m_deviceSampleRates.m_firRate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         forwardChangeOtherDSP = true; | 
					
						
							| 
									
										
										
										
											2017-12-24 11:05:16 +01:00
										 |  |  |         forwardChangeOwnDSP = (m_settings.m_devSampleRate != settings.m_devSampleRate) || force; | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  | 	if ((m_settings.m_devSampleRate != settings.m_devSampleRate) || (m_settings.m_log2Interp != settings.m_log2Interp) || force) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  |         unsigned int fifoRate = std::max( | 
					
						
							|  |  |  |             (unsigned int) settings.m_devSampleRate / (1<<settings.m_log2Interp), | 
					
						
							|  |  |  |             DevicePlutoSDRShared::m_sampleFifoMinRate); | 
					
						
							|  |  |  |         m_sampleSourceFifo.resize(SampleSourceFifo::getSizePolicy(fifoRate)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     if ((m_settings.m_log2Interp != settings.m_log2Interp) || force) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |         reverseAPIKeys.append("log2Interp"); | 
					
						
							| 
									
										
										
										
											2017-09-20 00:21:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         if (m_plutoSDROutputThread != 0) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             m_plutoSDROutputThread->setLog2Interpolation(settings.m_log2Interp); | 
					
						
							| 
									
										
										
										
											2017-09-20 00:21:06 +02:00
										 |  |  |             qDebug() << "PlutoSDROutput::applySettings: set soft interpolation in thread to " << (1<<settings.m_log2Interp); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         forwardChangeOwnDSP = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((m_settings.m_LOppmTenths != settings.m_LOppmTenths) || force) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         plutoBox->setLOPPMTenths(settings.m_LOppmTenths); | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         forwardChangeOtherDSP = true; | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     std::vector<std::string> params; | 
					
						
							|  |  |  |     bool paramsToSet = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     if ((m_settings.m_centerFrequency != settings.m_centerFrequency) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("centerFrequency"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_transverterMode != settings.m_transverterMode) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("transverterMode"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((m_settings.m_transverterDeltaFrequency != settings.m_transverterDeltaFrequency) || force) { | 
					
						
							|  |  |  |         reverseAPIKeys.append("transverterDeltaFrequency"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 19:11:13 +02:00
										 |  |  |     if (force || (m_settings.m_centerFrequency != settings.m_centerFrequency) | 
					
						
							|  |  |  |         || (m_settings.m_transverterMode != settings.m_transverterMode) | 
					
						
							|  |  |  |         || (m_settings.m_transverterDeltaFrequency != settings.m_transverterDeltaFrequency)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-09-25 19:11:13 +02:00
										 |  |  |         qint64 deviceCenterFrequency = settings.m_centerFrequency; | 
					
						
							|  |  |  |         deviceCenterFrequency -= settings.m_transverterMode ? settings.m_transverterDeltaFrequency : 0; | 
					
						
							|  |  |  |         deviceCenterFrequency = deviceCenterFrequency < 0 ? 0 : deviceCenterFrequency; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         params.push_back(QString(tr("out_altvoltage1_TX_LO_frequency=%1").arg(deviceCenterFrequency)).toStdString()); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         paramsToSet = true; | 
					
						
							|  |  |  |         forwardChangeOwnDSP = true; | 
					
						
							| 
									
										
										
										
											2017-09-25 19:11:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         qDebug() << "PlutoSDROutput::applySettings: center freq: " << settings.m_centerFrequency << " Hz" | 
					
						
							|  |  |  |                 << " device center freq: " << deviceCenterFrequency << " Hz"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((m_settings.m_lpfBW != settings.m_lpfBW) || force) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |         reverseAPIKeys.append("lpfBW"); | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         params.push_back(QString(tr("out_voltage_rf_bandwidth=%1").arg(settings.m_lpfBW)).toStdString()); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         paramsToSet = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((m_settings.m_antennaPath != settings.m_antennaPath) || force) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |         reverseAPIKeys.append("antennaPath"); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         QString rfPortStr; | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         PlutoSDROutputSettings::translateRFPath(settings.m_antennaPath, rfPortStr); | 
					
						
							|  |  |  |         params.push_back(QString(tr("out_voltage0_rf_port_select=%1").arg(rfPortStr)).toStdString()); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         paramsToSet = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |     if ((m_settings.m_att != settings.m_att) || force) | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |         reverseAPIKeys.append("att"); | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         float attF = settings.m_att * 0.25f; | 
					
						
							|  |  |  |         params.push_back(QString(tr("out_voltage0_hardwaregain=%1").arg(attF)).toStdString()); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         paramsToSet = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (paramsToSet) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         plutoBox->set_params(DevicePlutoSDRBox::DEVICE_PHY, params); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     if (settings.m_useReverseAPI) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         bool fullUpdate = ((m_settings.m_useReverseAPI != settings.m_useReverseAPI) && settings.m_useReverseAPI) || | 
					
						
							|  |  |  |                 (m_settings.m_reverseAPIAddress != settings.m_reverseAPIAddress) || | 
					
						
							|  |  |  |                 (m_settings.m_reverseAPIPort != settings.m_reverseAPIPort) || | 
					
						
							|  |  |  |                 (m_settings.m_reverseAPIDeviceIndex != settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  |         webapiReverseSendSettings(reverseAPIKeys, settings, fullUpdate || force); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     m_settings = settings; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (suspendAllOtherThreads) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |         const std::vector<DeviceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies(); | 
					
						
							|  |  |  |         std::vector<DeviceAPI*>::const_iterator itSource = sourceBuddies.begin(); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         for (; itSource != sourceBuddies.end(); ++itSource) | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |             DevicePlutoSDRShared *buddySharedPtr = (DevicePlutoSDRShared *) (*itSource)->getBuddySharedPtr(); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (buddySharedPtr->m_threadWasRunning) { | 
					
						
							|  |  |  |                 buddySharedPtr->m_thread->startWork(); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-22 03:04:42 +01:00
										 |  |  |     if (ownThreadWasRunning) { | 
					
						
							|  |  |  |         m_plutoSDROutputThread->startWork(); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |     // TODO: forward changes to other (Rx) DSP
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     if (forwardChangeOtherDSP) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         qDebug("PlutoSDROutput::applySettings: forwardChangeOtherDSP"); | 
					
						
							| 
									
										
										
										
											2017-09-20 18:25:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |         const std::vector<DeviceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies(); | 
					
						
							|  |  |  |         std::vector<DeviceAPI*>::const_iterator itSource = sourceBuddies.begin(); | 
					
						
							| 
									
										
										
										
											2017-09-20 18:25:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         for (; itSource != sourceBuddies.end(); ++itSource) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             DevicePlutoSDRShared::MsgCrossReportToBuddy *msg = DevicePlutoSDRShared::MsgCrossReportToBuddy::create( | 
					
						
							|  |  |  |                     settings.m_devSampleRate, | 
					
						
							|  |  |  |                     settings.m_lpfFIREnable, | 
					
						
							|  |  |  |                     settings.m_lpfFIRlog2Interp, | 
					
						
							|  |  |  |                     settings.m_lpfFIRBW, | 
					
						
							|  |  |  |                     settings.m_LOppmTenths); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             if ((*itSource)->getSamplingDeviceGUIMessageQueue()) | 
					
						
							| 
									
										
										
										
											2017-09-20 18:25:54 +02:00
										 |  |  |             { | 
					
						
							|  |  |  |                 DevicePlutoSDRShared::MsgCrossReportToBuddy *msgToGUI = new DevicePlutoSDRShared::MsgCrossReportToBuddy(*msg); | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |                 (*itSource)->getSamplingDeviceGUIMessageQueue()->push(msgToGUI); | 
					
						
							| 
									
										
										
										
											2017-09-20 18:25:54 +02:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-08 22:11:53 +02:00
										 |  |  |             (*itSource)->getSamplingDeviceInputMessageQueue()->push(msg); | 
					
						
							| 
									
										
										
										
											2017-09-20 18:25:54 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (forwardChangeOwnDSP) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         qDebug("PlutoSDROutput::applySettings: forward change to self"); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |         int sampleRate = m_settings.m_devSampleRate/(1<<m_settings.m_log2Interp); | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         DSPSignalNotification *notif = new DSPSignalNotification(sampleRate, m_settings.m_centerFrequency); | 
					
						
							|  |  |  |         m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  | void PlutoSDROutput::getRSSI(std::string& rssiStr) | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_open) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("PlutoSDROutput::getRSSI: device not open"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     DevicePlutoSDRBox *plutoBox =  m_deviceShared.m_deviceParams->getBox(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  |     if (!plutoBox->getTxRSSI(rssiStr, 0)) { | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |         rssiStr = "xxx dB"; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-04 11:23:54 +01:00
										 |  |  | void PlutoSDROutput::getLORange(qint64& minLimit, qint64& maxLimit) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_open) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("PlutoSDROutput::getLORange: device not open"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-04 11:23:54 +01:00
										 |  |  |     uint64_t min, max; | 
					
						
							|  |  |  |     DevicePlutoSDRBox *plutoBox =  m_deviceShared.m_deviceParams->getBox(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     plutoBox->getTxLORange(min, max); | 
					
						
							|  |  |  |     minLimit = min; | 
					
						
							|  |  |  |     maxLimit = max; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-01 16:42:08 -05:00
										 |  |  | void PlutoSDROutput::getbbLPRange(quint32& minLimit, quint32& maxLimit) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_open) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("PlutoSDROutput::getbbLPRange: device not open"); | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-01 16:42:08 -05:00
										 |  |  |     uint32_t min, max; | 
					
						
							|  |  |  |     DevicePlutoSDRBox *plutoBox =  m_deviceShared.m_deviceParams->getBox(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     plutoBox->getbbLPTxRange(min, max); | 
					
						
							|  |  |  |     minLimit = min; | 
					
						
							|  |  |  |     maxLimit = max; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  | bool PlutoSDROutput::fetchTemperature() | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_open) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("PlutoSDRInput::fetchTemperature: device not open"); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     DevicePlutoSDRBox *plutoBox =  m_deviceShared.m_deviceParams->getBox(); | 
					
						
							|  |  |  |     return plutoBox->fetchTemp(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-19 08:33:26 +02:00
										 |  |  | float PlutoSDROutput::getTemperature() | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-20 09:48:24 +02:00
										 |  |  |     if (!m_open) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qDebug("PlutoSDRInput::getTemperature: device not open"); | 
					
						
							|  |  |  |         return 0.0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-18 23:47:36 +02:00
										 |  |  |     DevicePlutoSDRBox *plutoBox =  m_deviceShared.m_deviceParams->getBox(); | 
					
						
							|  |  |  |     return plutoBox->getTemp(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | int PlutoSDROutput::webapiRunGet( | 
					
						
							|  |  |  |         SWGSDRangel::SWGDeviceState& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  |     m_deviceAPI->getDeviceEngineStateStr(*response.getState()); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PlutoSDROutput::webapiRun( | 
					
						
							|  |  |  |         bool run, | 
					
						
							|  |  |  |         SWGSDRangel::SWGDeviceState& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2017-12-14 23:29:12 +01:00
										 |  |  |     m_deviceAPI->getDeviceEngineStateStr(*response.getState()); | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |     MsgStartStop *message = MsgStartStop::create(run); | 
					
						
							|  |  |  |     m_inputMessageQueue.push(message); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-12-14 18:02:49 +01:00
										 |  |  |         MsgStartStop *messagetoGui = MsgStartStop::create(run); | 
					
						
							|  |  |  |         m_guiMessageQueue->push(messagetoGui); | 
					
						
							| 
									
										
										
										
											2017-12-10 01:57:50 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | int PlutoSDROutput::webapiSettingsGet( | 
					
						
							|  |  |  |                 SWGSDRangel::SWGDeviceSettings& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |                 QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  |     response.setPlutoSdrOutputSettings(new SWGSDRangel::SWGPlutoSdrOutputSettings()); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->init(); | 
					
						
							|  |  |  |     webapiFormatDeviceSettings(response, m_settings); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PlutoSDROutput::webapiSettingsPutPatch( | 
					
						
							|  |  |  |                 bool force, | 
					
						
							|  |  |  |                 const QStringList& deviceSettingsKeys, | 
					
						
							|  |  |  |                 SWGSDRangel::SWGDeviceSettings& response, // query + response
 | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |                 QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  |     PlutoSDROutputSettings settings = m_settings; | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  |     webapiUpdateDeviceSettings(settings, deviceSettingsKeys, response); | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 20:24:44 +02:00
										 |  |  |     MsgConfigurePlutoSDR *msg = MsgConfigurePlutoSDR::create(settings, force); | 
					
						
							|  |  |  |     m_inputMessageQueue.push(msg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_guiMessageQueue) // forward to GUI if any
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         MsgConfigurePlutoSDR *msgToGUI = MsgConfigurePlutoSDR::create(settings, force); | 
					
						
							|  |  |  |         m_guiMessageQueue->push(msgToGUI); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     webapiFormatDeviceSettings(response, settings); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::webapiUpdateDeviceSettings( | 
					
						
							|  |  |  |         PlutoSDROutputSettings& settings, | 
					
						
							|  |  |  |         const QStringList& deviceSettingsKeys, | 
					
						
							|  |  |  |         SWGSDRangel::SWGDeviceSettings& response) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  |     if (deviceSettingsKeys.contains("centerFrequency")) { | 
					
						
							|  |  |  |         settings.m_centerFrequency = response.getPlutoSdrOutputSettings()->getCenterFrequency(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("devSampleRate")) { | 
					
						
							|  |  |  |         settings.m_devSampleRate = response.getPlutoSdrOutputSettings()->getDevSampleRate(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("LOppmTenths")) { | 
					
						
							|  |  |  |         settings.m_LOppmTenths = response.getPlutoSdrOutputSettings()->getLOppmTenths(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIREnable")) { | 
					
						
							|  |  |  |         settings.m_lpfFIREnable = response.getPlutoSdrOutputSettings()->getLpfFirEnable() != 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIRBW")) { | 
					
						
							|  |  |  |         settings.m_lpfFIRBW = response.getPlutoSdrOutputSettings()->getLpfFirbw(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIRlog2Interp")) { | 
					
						
							|  |  |  |         settings.m_lpfFIRlog2Interp = response.getPlutoSdrOutputSettings()->getLpfFiRlog2Interp(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIRGain")) { | 
					
						
							|  |  |  |         settings.m_lpfFIRGain = response.getPlutoSdrOutputSettings()->getLpfFirGain(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("log2Interp")) { | 
					
						
							|  |  |  |         settings.m_log2Interp = response.getPlutoSdrOutputSettings()->getLog2Interp(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfBW")) { | 
					
						
							|  |  |  |         settings.m_lpfBW = response.getPlutoSdrOutputSettings()->getLpfBw(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("att")) { | 
					
						
							|  |  |  |         settings.m_att = response.getPlutoSdrOutputSettings()->getAtt(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("antennaPath")) { | 
					
						
							|  |  |  |         int antennaPath = response.getPlutoSdrOutputSettings()->getAntennaPath(); | 
					
						
							|  |  |  |         antennaPath = antennaPath < 0 ? 0 : antennaPath >= PlutoSDROutputSettings::RFPATH_END ? PlutoSDROutputSettings::RFPATH_END-1 : antennaPath; | 
					
						
							|  |  |  |         settings.m_antennaPath = (PlutoSDROutputSettings::RFPath) antennaPath; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("transverterDeltaFrequency")) { | 
					
						
							|  |  |  |         settings.m_transverterDeltaFrequency = response.getPlutoSdrOutputSettings()->getTransverterDeltaFrequency(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("transverterMode")) { | 
					
						
							|  |  |  |         settings.m_transverterMode = response.getPlutoSdrOutputSettings()->getTransverterMode() != 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     if (deviceSettingsKeys.contains("useReverseAPI")) { | 
					
						
							|  |  |  |         settings.m_useReverseAPI = response.getPlutoSdrOutputSettings()->getUseReverseApi() != 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("reverseAPIAddress")) { | 
					
						
							|  |  |  |         settings.m_reverseAPIAddress = *response.getPlutoSdrOutputSettings()->getReverseApiAddress(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("reverseAPIPort")) { | 
					
						
							|  |  |  |         settings.m_reverseAPIPort = response.getPlutoSdrOutputSettings()->getReverseApiPort(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("reverseAPIDeviceIndex")) { | 
					
						
							|  |  |  |         settings.m_reverseAPIDeviceIndex = response.getPlutoSdrOutputSettings()->getReverseApiDeviceIndex(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PlutoSDROutput::webapiReportGet( | 
					
						
							|  |  |  |         SWGSDRangel::SWGDeviceReport& response, | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |         QString& errorMessage) | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-13 08:51:14 +01:00
										 |  |  |     (void) errorMessage; | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  |     response.setPlutoSdrOutputReport(new SWGSDRangel::SWGPlutoSdrOutputReport()); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputReport()->init(); | 
					
						
							|  |  |  |     webapiFormatDeviceReport(response); | 
					
						
							|  |  |  |     return 200; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::webapiFormatDeviceSettings(SWGSDRangel::SWGDeviceSettings& response, const PlutoSDROutputSettings& settings) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setCenterFrequency(settings.m_centerFrequency); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setDevSampleRate(settings.m_devSampleRate); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setLOppmTenths(settings.m_LOppmTenths); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setLpfFirEnable(settings.m_lpfFIREnable ? 1 : 0); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setLpfFirbw(settings.m_lpfFIRBW); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setLpfFiRlog2Interp(settings.m_lpfFIRlog2Interp); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setLpfFirGain(settings.m_lpfFIRGain); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setLog2Interp(settings.m_log2Interp); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setLpfBw(settings.m_lpfBW); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setAtt(settings.m_att); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setAntennaPath((int) settings.m_antennaPath); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setTransverterDeltaFrequency(settings.m_transverterDeltaFrequency); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setTransverterMode(settings.m_transverterMode ? 1 : 0); | 
					
						
							| 
									
										
										
										
											2019-01-11 14:45:00 +01:00
										 |  |  |     response.getPlutoSdrOutputSettings()->setUseReverseApi(settings.m_useReverseAPI ? 1 : 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (response.getPlutoSdrOutputSettings()->getReverseApiAddress()) { | 
					
						
							|  |  |  |         *response.getPlutoSdrOutputSettings()->getReverseApiAddress() = settings.m_reverseAPIAddress; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         response.getPlutoSdrOutputSettings()->setReverseApiAddress(new QString(settings.m_reverseAPIAddress)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setReverseApiPort(settings.m_reverseAPIPort); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputSettings()->setReverseApiDeviceIndex(settings.m_reverseAPIDeviceIndex); | 
					
						
							| 
									
										
										
										
											2018-05-26 20:33:02 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::webapiFormatDeviceReport(SWGSDRangel::SWGDeviceReport& response) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     response.getPlutoSdrOutputReport()->setDacRate(getDACSampleRate()); | 
					
						
							|  |  |  |     std::string rssiStr; | 
					
						
							|  |  |  |     getRSSI(rssiStr); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputReport()->setRssi(new QString(rssiStr.c_str())); | 
					
						
							|  |  |  |     fetchTemperature(); | 
					
						
							|  |  |  |     response.getPlutoSdrOutputReport()->setTemperature(getTemperature()); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::webapiReverseSendSettings(QList<QString>& deviceSettingsKeys, const PlutoSDROutputSettings& settings, bool force) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SWGSDRangel::SWGDeviceSettings *swgDeviceSettings = new SWGSDRangel::SWGDeviceSettings(); | 
					
						
							| 
									
										
										
										
											2019-05-07 14:43:38 +02:00
										 |  |  |     swgDeviceSettings->setDirection(1); // single Tx
 | 
					
						
							| 
									
										
										
										
											2019-03-25 13:46:42 +01:00
										 |  |  |     swgDeviceSettings->setOriginatorIndex(m_deviceAPI->getDeviceSetIndex()); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     swgDeviceSettings->setDeviceHwType(new QString("PlutoSDR")); | 
					
						
							|  |  |  |     swgDeviceSettings->setPlutoSdrOutputSettings(new SWGSDRangel::SWGPlutoSdrOutputSettings()); | 
					
						
							|  |  |  |     SWGSDRangel::SWGPlutoSdrOutputSettings *swgPlutoSdrOutputSettings = swgDeviceSettings->getPlutoSdrOutputSettings(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // transfer data that has been modified. When force is on transfer all data except reverse API data
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("centerFrequency") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setCenterFrequency(settings.m_centerFrequency); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("devSampleRate") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setDevSampleRate(settings.m_devSampleRate); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("LOppmTenths") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setLOppmTenths(settings.m_LOppmTenths); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIREnable") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setLpfFirEnable(settings.m_lpfFIREnable ? 1 : 0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIRBW") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setLpfFirbw(settings.m_lpfFIRBW); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIRlog2Interp") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setLpfFiRlog2Interp(settings.m_lpfFIRlog2Interp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfFIRGain") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setLpfFirGain(settings.m_lpfFIRGain); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("log2Interp") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setLog2Interp(settings.m_log2Interp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("lpfBW") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setLpfBw(settings.m_lpfBW); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("att") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setAtt(settings.m_att); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("antennaPath") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setAntennaPath((int) settings.m_antennaPath); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("transverterDeltaFrequency") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setTransverterDeltaFrequency(settings.m_transverterDeltaFrequency); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (deviceSettingsKeys.contains("transverterMode") || force) { | 
					
						
							|  |  |  |         swgPlutoSdrOutputSettings->setTransverterMode(settings.m_transverterMode ? 1 : 0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QString deviceSettingsURL = QString("http://%1:%2/sdrangel/deviceset/%3/device/settings") | 
					
						
							|  |  |  |             .arg(settings.m_reverseAPIAddress) | 
					
						
							|  |  |  |             .arg(settings.m_reverseAPIPort) | 
					
						
							|  |  |  |             .arg(settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  |     m_networkRequest.setUrl(QUrl(deviceSettingsURL)); | 
					
						
							|  |  |  |     m_networkRequest.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QBuffer *buffer = new QBuffer(); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     buffer->open((QBuffer::ReadWrite)); | 
					
						
							|  |  |  |     buffer->write(swgDeviceSettings->asJson().toUtf8()); | 
					
						
							|  |  |  |     buffer->seek(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Always use PATCH to avoid passing reverse API settings
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QNetworkReply *reply = m_networkManager->sendCustomRequest(m_networkRequest, "PATCH", buffer); | 
					
						
							|  |  |  |     buffer->setParent(reply); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     delete swgDeviceSettings; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::webapiReverseSendStartStop(bool start) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     SWGSDRangel::SWGDeviceSettings *swgDeviceSettings = new SWGSDRangel::SWGDeviceSettings(); | 
					
						
							| 
									
										
										
										
											2019-05-07 14:43:38 +02:00
										 |  |  |     swgDeviceSettings->setDirection(1); // single Tx
 | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     swgDeviceSettings->setOriginatorIndex(m_deviceAPI->getDeviceSetIndex()); | 
					
						
							|  |  |  |     swgDeviceSettings->setDeviceHwType(new QString("PlutoSDR")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     QString deviceSettingsURL = QString("http://%1:%2/sdrangel/deviceset/%3/device/run") | 
					
						
							|  |  |  |             .arg(m_settings.m_reverseAPIAddress) | 
					
						
							|  |  |  |             .arg(m_settings.m_reverseAPIPort) | 
					
						
							|  |  |  |             .arg(m_settings.m_reverseAPIDeviceIndex); | 
					
						
							|  |  |  |     m_networkRequest.setUrl(QUrl(deviceSettingsURL)); | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     m_networkRequest.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QBuffer *buffer = new QBuffer(); | 
					
						
							| 
									
										
										
										
											2019-03-25 15:26:01 +01:00
										 |  |  |     buffer->open((QBuffer::ReadWrite)); | 
					
						
							|  |  |  |     buffer->write(swgDeviceSettings->asJson().toUtf8()); | 
					
						
							|  |  |  |     buffer->seek(0); | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     QNetworkReply *reply; | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (start) { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         reply = m_networkManager->sendCustomRequest(m_networkRequest, "POST", buffer); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |         reply = m_networkManager->sendCustomRequest(m_networkRequest, "DELETE", buffer); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-06-14 16:58:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     buffer->setParent(reply); | 
					
						
							| 
									
										
										
										
											2019-06-14 16:58:09 +02:00
										 |  |  |     delete swgDeviceSettings; | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PlutoSDROutput::networkManagerFinished(QNetworkReply *reply) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QNetworkReply::NetworkError replyError = reply->error(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (replyError) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         qWarning() << "PlutoSDROutput::networkManagerFinished:" | 
					
						
							|  |  |  |                 << " error(" << (int) replyError | 
					
						
							|  |  |  |                 << "): " << replyError | 
					
						
							|  |  |  |                 << ": " << reply->errorString(); | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         QString answer = reply->readAll(); | 
					
						
							|  |  |  |         answer.chop(1); // remove last \n
 | 
					
						
							|  |  |  |         qDebug("PlutoSDROutput::networkManagerFinished: reply:\n%s", answer.toStdString().c_str()); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-15 01:04:24 +01:00
										 |  |  |     reply->deleteLater(); | 
					
						
							| 
									
										
										
										
											2018-12-26 21:40:46 +01:00
										 |  |  | } |