2017-09-04 07:32:31 -04: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 //
|
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-09-04 16:23:39 -04:00
|
|
|
#include <QDebug>
|
|
|
|
|
2017-09-04 07:32:31 -04:00
|
|
|
#include "dsp/filerecord.h"
|
2017-09-04 16:23:39 -04:00
|
|
|
#include "device/devicesourceapi.h"
|
|
|
|
#include "device/devicesinkapi.h"
|
2017-09-05 18:23:47 -04:00
|
|
|
#include "plutosdr/deviceplutosdrparams.h"
|
|
|
|
#include "plutosdr/deviceplutosdrbox.h"
|
2017-09-04 07:32:31 -04:00
|
|
|
|
|
|
|
#include "plutosdrinput.h"
|
2017-09-06 12:48:58 -04:00
|
|
|
#include "plutosdrinputthread.h"
|
2017-09-04 07:32:31 -04:00
|
|
|
|
2017-09-06 00:15:38 -04:00
|
|
|
#define PLUTOSDR_BLOCKSIZE (1024*1024) //complex samples per buffer
|
|
|
|
|
2017-09-04 07:32:31 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(PlutoSDRInput::MsgFileRecord, Message)
|
|
|
|
|
|
|
|
PlutoSDRInput::PlutoSDRInput(DeviceSourceAPI *deviceAPI) :
|
|
|
|
m_deviceAPI(deviceAPI),
|
|
|
|
m_fileSink(0),
|
|
|
|
m_deviceDescription("PlutoSDR"),
|
2017-09-05 18:57:27 -04:00
|
|
|
m_running(false),
|
2017-09-06 12:48:58 -04:00
|
|
|
m_plutoRxBuffer(0),
|
|
|
|
m_plutoSDRInputThread(0)
|
2017-09-04 07:32:31 -04:00
|
|
|
{
|
|
|
|
char recFileNameCStr[30];
|
|
|
|
sprintf(recFileNameCStr, "test_%d.sdriq", m_deviceAPI->getDeviceUID());
|
|
|
|
m_fileSink = new FileRecord(std::string(recFileNameCStr));
|
|
|
|
m_deviceAPI->addSink(m_fileSink);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PlutoSDRInput::~PlutoSDRInput()
|
|
|
|
{
|
|
|
|
m_deviceAPI->removeSink(m_fileSink);
|
|
|
|
delete m_fileSink;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PlutoSDRInput::start()
|
|
|
|
{
|
2017-09-05 19:01:17 -04:00
|
|
|
if (!m_deviceShared.m_deviceParams->getBox()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_running) stop();
|
|
|
|
|
|
|
|
applySettings(m_settings, true);
|
|
|
|
|
|
|
|
// start / stop streaming is done in the thread.
|
|
|
|
|
2017-09-06 12:48:58 -04:00
|
|
|
if ((m_plutoSDRInputThread = new PlutoSDRInputThread(PLUTOSDR_BLOCKSIZE, m_deviceShared.m_deviceParams->getBox(), &m_sampleFifo)) == 0)
|
|
|
|
{
|
|
|
|
qFatal("PlutoSDRInput::start: cannot create thread");
|
|
|
|
stop();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("PlutoSDRInput::start: thread created");
|
|
|
|
}
|
|
|
|
|
|
|
|
m_plutoSDRInputThread->setLog2Decimation(m_settings.m_log2Decim);
|
|
|
|
m_plutoSDRInputThread->startWork();
|
|
|
|
|
|
|
|
m_deviceShared.m_thread = m_plutoSDRInputThread;
|
|
|
|
m_running = true;
|
2017-09-05 19:01:17 -04:00
|
|
|
|
|
|
|
return true;
|
2017-09-04 07:32:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlutoSDRInput::stop()
|
|
|
|
{
|
2017-09-06 12:48:58 -04:00
|
|
|
if (m_plutoSDRInputThread != 0)
|
|
|
|
{
|
|
|
|
m_plutoSDRInputThread->stopWork();
|
|
|
|
delete m_plutoSDRInputThread;
|
|
|
|
m_plutoSDRInputThread = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_deviceShared.m_thread = 0;
|
|
|
|
m_running = false;
|
2017-09-04 07:32:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString& PlutoSDRInput::getDeviceDescription() const
|
|
|
|
{
|
|
|
|
return m_deviceDescription;
|
|
|
|
}
|
|
|
|
int PlutoSDRInput::getSampleRate() const
|
|
|
|
{
|
|
|
|
return (m_settings.m_devSampleRate / (1<<m_settings.m_log2Decim));
|
|
|
|
}
|
|
|
|
|
|
|
|
quint64 PlutoSDRInput::getCenterFrequency() const
|
|
|
|
{
|
|
|
|
return m_settings.m_centerFrequency;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PlutoSDRInput::handleMessage(const Message& message)
|
|
|
|
{
|
2017-09-06 12:48:58 -04:00
|
|
|
if (MsgConfigurePlutoSDR::match(message))
|
|
|
|
{
|
|
|
|
MsgConfigurePlutoSDR& conf = (MsgConfigurePlutoSDR&) message;
|
|
|
|
qDebug() << "PlutoSDRInput::handleMessage: MsgConfigurePlutoSDR";
|
|
|
|
|
|
|
|
if (!applySettings(conf.getSettings(), conf.getForce()))
|
|
|
|
{
|
|
|
|
qDebug("PlutoSDRInput::handleMessage config error");
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (MsgFileRecord::match(message))
|
2017-09-04 07:32:31 -04:00
|
|
|
{
|
|
|
|
MsgFileRecord& conf = (MsgFileRecord&) message;
|
|
|
|
qDebug() << "PlutoSDRInput::handleMessage: MsgFileRecord: " << conf.getStartStop();
|
|
|
|
|
|
|
|
if (conf.getStartStop()) {
|
|
|
|
m_fileSink->startRecording();
|
|
|
|
} else {
|
|
|
|
m_fileSink->stopRecording();
|
|
|
|
}
|
2017-09-04 16:23:39 -04:00
|
|
|
|
|
|
|
return true;
|
2017-09-04 07:32:31 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2017-09-05 10:23:10 -04:00
|
|
|
|
|
|
|
bool PlutoSDRInput::openDevice()
|
|
|
|
{
|
2017-09-05 18:23:47 -04:00
|
|
|
if (!m_sampleFifo.setSize(96000 * 4))
|
|
|
|
{
|
|
|
|
qCritical("PlutoSDRInput::openDevice: could not allocate SampleFifo");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("PlutoSDRInput::openDevice: allocated SampleFifo");
|
|
|
|
}
|
|
|
|
|
|
|
|
// look for Tx buddy and get reference to common parameters
|
|
|
|
if (m_deviceAPI->getSinkBuddies().size() > 0) // then sink
|
|
|
|
{
|
|
|
|
qDebug("PlutoSDRInput::openDevice: look at Tx buddy");
|
|
|
|
|
|
|
|
DeviceSinkAPI *sinkBuddy = m_deviceAPI->getSinkBuddies()[0];
|
|
|
|
m_deviceShared = *((DevicePlutoSDRShared *) sinkBuddy->getBuddySharedPtr()); // copy parameters
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams == 0)
|
|
|
|
{
|
|
|
|
qCritical("PlutoSDRInput::openDevice: cannot get device parameters from Tx buddy");
|
|
|
|
return false; // the device params should have been created by the buddy
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("PlutoSDRInput::openDevice: getting device parameters from Tx buddy");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// There is no buddy then create the first PlutoSDR common parameters
|
|
|
|
// open the device this will also populate common fields
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("PlutoSDRInput::openDevice: open device here");
|
|
|
|
|
|
|
|
m_deviceShared.m_deviceParams = new DevicePlutoSDRParams();
|
|
|
|
char serial[256];
|
|
|
|
strcpy(serial, qPrintable(m_deviceAPI->getSampleSourceSerial()));
|
|
|
|
m_deviceShared.m_deviceParams->open(serial);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_deviceAPI->setBuddySharedPtr(&m_deviceShared); // propagate common parameters to API
|
|
|
|
|
|
|
|
// acquire the channel
|
|
|
|
DevicePlutoSDRBox *plutoBox = m_deviceShared.m_deviceParams->getBox();
|
|
|
|
plutoBox->openRx();
|
2017-09-06 00:15:38 -04:00
|
|
|
m_plutoRxBuffer = plutoBox->createRxBuffer(PLUTOSDR_BLOCKSIZE, false);
|
2017-09-05 19:01:17 -04:00
|
|
|
|
|
|
|
return true;
|
2017-09-05 10:23:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlutoSDRInput::closeDevice()
|
|
|
|
{
|
2017-09-05 18:57:27 -04:00
|
|
|
if (m_deviceShared.m_deviceParams->getBox() == 0) { // was never open
|
|
|
|
return;
|
|
|
|
}
|
2017-09-05 10:23:10 -04:00
|
|
|
|
2017-09-05 18:57:27 -04:00
|
|
|
if (m_deviceAPI->getSinkBuddies().size() == 0)
|
|
|
|
{
|
|
|
|
m_deviceShared.m_deviceParams->close();
|
|
|
|
delete m_deviceShared.m_deviceParams;
|
|
|
|
m_deviceShared.m_deviceParams = 0;
|
|
|
|
}
|
2017-09-05 10:23:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlutoSDRInput::suspendBuddies()
|
|
|
|
{
|
2017-09-05 18:57:27 -04:00
|
|
|
// suspend Tx buddy's thread
|
2017-09-05 10:23:10 -04:00
|
|
|
|
2017-09-05 18:57:27 -04:00
|
|
|
for (unsigned int i = 0; i < m_deviceAPI->getSinkBuddies().size(); i++)
|
|
|
|
{
|
|
|
|
DeviceSinkAPI *buddy = m_deviceAPI->getSinkBuddies()[i];
|
|
|
|
DevicePlutoSDRShared *buddyShared = (DevicePlutoSDRShared *) buddy->getBuddySharedPtr();
|
|
|
|
|
|
|
|
if (buddyShared->m_thread) {
|
|
|
|
buddyShared->m_thread->stopWork();
|
|
|
|
}
|
|
|
|
}
|
2017-09-05 10:23:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void PlutoSDRInput::resumeBuddies()
|
|
|
|
{
|
2017-09-05 18:57:27 -04:00
|
|
|
// resume Tx buddy's thread
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < m_deviceAPI->getSinkBuddies().size(); i++)
|
|
|
|
{
|
|
|
|
DeviceSinkAPI *buddy = m_deviceAPI->getSinkBuddies()[i];
|
|
|
|
DevicePlutoSDRShared *buddyShared = (DevicePlutoSDRShared *) buddy->getBuddySharedPtr();
|
|
|
|
|
|
|
|
if (buddyShared->m_thread) {
|
|
|
|
buddyShared->m_thread->startWork();
|
|
|
|
}
|
|
|
|
}
|
2017-09-05 19:01:17 -04:00
|
|
|
}
|
2017-09-05 10:23:10 -04:00
|
|
|
|
2017-09-05 19:01:17 -04:00
|
|
|
bool PlutoSDRInput::applySettings(const PlutoSDRInputSettings& settings, bool force)
|
|
|
|
{
|
2017-09-06 12:48:58 -04:00
|
|
|
bool forwardChangeOwnDSP = false;
|
|
|
|
bool forwardChangeAllDSP = false;
|
|
|
|
bool suspendOwnThread = false;
|
|
|
|
bool ownThreadWasRunning = false;
|
|
|
|
bool suspendAllOtherThreads = false; // All others means Tx in fact
|
|
|
|
bool doCalibration = false;
|
|
|
|
|
|
|
|
// determine if buddies threads or own thread need to be suspended
|
|
|
|
|
|
|
|
// change of global baseband sample rate affecting all buddies can occur if
|
|
|
|
// - device to host sample rate is changed
|
|
|
|
// - rate governor is changed
|
|
|
|
// - FIR filter decimation is changed
|
2017-09-07 00:15:39 -04:00
|
|
|
// - FIR filter is enabled or disabled
|
2017-09-06 12:48:58 -04:00
|
|
|
if ((m_settings.m_devSampleRate != settings.m_devSampleRate) ||
|
|
|
|
(m_settings.m_rateGovernor != settings.m_rateGovernor) ||
|
2017-09-07 00:15:39 -04:00
|
|
|
(m_settings.m_lpfFIRlog2Decim != settings.m_lpfFIRlog2Decim) ||
|
|
|
|
(m_settings.m_lpfFIREnable != settings.m_lpfFIREnable) || force)
|
2017-09-06 12:48:58 -04:00
|
|
|
{
|
|
|
|
suspendAllOtherThreads = true;
|
|
|
|
suspendOwnThread = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
suspendOwnThread = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (suspendAllOtherThreads)
|
|
|
|
{
|
|
|
|
const std::vector<DeviceSinkAPI*>& sinkBuddies = m_deviceAPI->getSinkBuddies();
|
|
|
|
std::vector<DeviceSinkAPI*>::const_iterator itSink = sinkBuddies.begin();
|
|
|
|
|
|
|
|
for (; itSink != sinkBuddies.end(); ++itSink)
|
|
|
|
{
|
|
|
|
DevicePlutoSDRShared *buddySharedPtr = (DevicePlutoSDRShared *) (*itSink)->getBuddySharedPtr();
|
|
|
|
|
|
|
|
if (buddySharedPtr->m_thread) {
|
|
|
|
buddySharedPtr->m_thread->stopWork();
|
|
|
|
buddySharedPtr->m_threadWasRunning = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buddySharedPtr->m_threadWasRunning = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (suspendOwnThread)
|
|
|
|
{
|
|
|
|
if (m_plutoSDRInputThread && m_plutoSDRInputThread->isRunning())
|
|
|
|
{
|
|
|
|
m_plutoSDRInputThread->stopWork();
|
|
|
|
ownThreadWasRunning = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: apply settings (all cases)
|
|
|
|
|
|
|
|
// Change affecting device baseband sample rate potentially affecting all buddies device/host sample rate
|
|
|
|
if ((m_settings.m_devSampleRate != settings.m_devSampleRate) ||
|
|
|
|
(m_settings.m_rateGovernor != settings.m_rateGovernor) ||
|
2017-09-07 00:15:39 -04:00
|
|
|
(m_settings.m_lpfFIRlog2Decim != settings.m_lpfFIRlog2Decim) ||
|
|
|
|
(m_settings.m_lpfFIREnable != settings.m_lpfFIREnable) || force)
|
2017-09-06 12:48:58 -04:00
|
|
|
{
|
2017-09-07 00:15:39 -04:00
|
|
|
std::vector<std::string> params;
|
|
|
|
params.push_back(QString(tr("in_voltage_sampling_frequency=%1").arg(settings.m_devSampleRate)).toStdString());
|
|
|
|
QString rateGovStr;
|
|
|
|
PlutoSDRInputSettings::translateGovernor(settings.m_rateGovernor, rateGovStr);
|
|
|
|
params.push_back(QString(tr("trx_rate_governor=%1").arg(rateGovStr)).toStdString());
|
|
|
|
params.push_back(QString(tr("in_voltage_filter_fir_en=%1").arg(settings.m_lpfFIREnable ? 1 : 0)).toStdString());
|
2017-09-06 12:48:58 -04:00
|
|
|
forwardChangeAllDSP = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (suspendAllOtherThreads)
|
|
|
|
{
|
|
|
|
const std::vector<DeviceSinkAPI*>& sinkBuddies = m_deviceAPI->getSinkBuddies();
|
|
|
|
std::vector<DeviceSinkAPI*>::const_iterator itSink = sinkBuddies.begin();
|
|
|
|
|
|
|
|
for (; itSink != sinkBuddies.end(); ++itSink)
|
|
|
|
{
|
|
|
|
DevicePlutoSDRShared *buddySharedPtr = (DevicePlutoSDRShared *) (*itSink)->getBuddySharedPtr();
|
|
|
|
|
|
|
|
if (buddySharedPtr->m_threadWasRunning) {
|
|
|
|
buddySharedPtr->m_thread->startWork();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (suspendOwnThread)
|
|
|
|
{
|
|
|
|
if (ownThreadWasRunning) {
|
|
|
|
m_plutoSDRInputThread->startWork();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-05 19:01:17 -04:00
|
|
|
return false;
|
2017-09-05 10:23:10 -04:00
|
|
|
}
|