2017-04-17 20:12:15 -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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QMutexLocker>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <string.h>
|
|
|
|
#include "lime/LimeSuite.h"
|
|
|
|
|
|
|
|
#include "device/devicesourceapi.h"
|
|
|
|
#include "device/devicesinkapi.h"
|
|
|
|
#include "dsp/dspcommands.h"
|
2017-09-04 18:00:33 -04:00
|
|
|
#include "dsp/filerecord.h"
|
2017-04-17 20:12:15 -04:00
|
|
|
#include "limesdrinput.h"
|
|
|
|
#include "limesdrinputthread.h"
|
|
|
|
#include "limesdr/devicelimesdrparam.h"
|
2017-04-22 21:36:10 -04:00
|
|
|
#include "limesdr/devicelimesdrshared.h"
|
2017-04-20 12:21:01 -04:00
|
|
|
#include "limesdr/devicelimesdr.h"
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
MESSAGE_CLASS_DEFINITION(LimeSDRInput::MsgConfigureLimeSDR, Message)
|
2017-04-19 12:41:55 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(LimeSDRInput::MsgGetStreamInfo, Message)
|
2017-07-03 07:42:11 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(LimeSDRInput::MsgGetDeviceInfo, Message)
|
2017-09-17 18:08:28 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(LimeSDRInput::MsgReportLimeSDRToBuddy, Message)
|
2017-04-19 12:41:55 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(LimeSDRInput::MsgReportStreamInfo, Message)
|
2017-09-04 18:00:33 -04:00
|
|
|
MESSAGE_CLASS_DEFINITION(LimeSDRInput::MsgFileRecord, Message)
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
LimeSDRInput::LimeSDRInput(DeviceSourceAPI *deviceAPI) :
|
|
|
|
m_deviceAPI(deviceAPI),
|
|
|
|
m_settings(),
|
|
|
|
m_limeSDRInputThread(0),
|
2017-09-18 17:29:55 -04:00
|
|
|
m_deviceDescription("LimeSDRInput"),
|
2017-04-17 20:12:15 -04:00
|
|
|
m_running(false),
|
|
|
|
m_firstConfig(true)
|
|
|
|
{
|
2017-04-20 17:32:08 -04:00
|
|
|
m_streamId.handle = 0;
|
2017-09-30 14:07:08 -04:00
|
|
|
suspendRxBuddies();
|
|
|
|
suspendTxBuddies();
|
2017-04-17 20:12:15 -04:00
|
|
|
openDevice();
|
2017-09-30 14:07:08 -04:00
|
|
|
resumeTxBuddies();
|
|
|
|
resumeRxBuddies();
|
2017-09-04 18:00:33 -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);
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LimeSDRInput::~LimeSDRInput()
|
|
|
|
{
|
|
|
|
if (m_running) stop();
|
2017-09-04 18:00:33 -04:00
|
|
|
m_deviceAPI->removeSink(m_fileSink);
|
|
|
|
delete m_fileSink;
|
2017-09-30 14:07:08 -04:00
|
|
|
suspendRxBuddies();
|
|
|
|
suspendTxBuddies();
|
2017-04-17 20:12:15 -04:00
|
|
|
closeDevice();
|
2017-09-30 14:07:08 -04:00
|
|
|
resumeTxBuddies();
|
|
|
|
resumeRxBuddies();
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
|
2017-09-14 20:32:30 -04:00
|
|
|
void LimeSDRInput::destroy()
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
bool LimeSDRInput::openDevice()
|
|
|
|
{
|
2017-04-18 16:22:21 -04:00
|
|
|
if (!m_sampleFifo.setSize(96000 * 4))
|
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::openDevice: could not allocate SampleFifo");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::openDevice: allocated SampleFifo");
|
|
|
|
}
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
// look for Rx buddies and get reference to common parameters
|
|
|
|
// if there is a channel left take the first available
|
|
|
|
if (m_deviceAPI->getSourceBuddies().size() > 0) // look source sibling first
|
|
|
|
{
|
2017-04-18 19:04:57 -04:00
|
|
|
qDebug("LimeSDRInput::openDevice: look in Rx buddies");
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
DeviceSourceAPI *sourceBuddy = m_deviceAPI->getSourceBuddies()[0];
|
|
|
|
m_deviceShared = *((DeviceLimeSDRShared *) sourceBuddy->getBuddySharedPtr()); // copy shared data
|
|
|
|
DeviceLimeSDRParams *deviceParams = m_deviceShared.m_deviceParams; // get device parameters
|
|
|
|
|
|
|
|
if (deviceParams == 0)
|
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::openDevice: cannot get device parameters from Rx buddy");
|
|
|
|
return false; // the device params should have been created by the buddy
|
|
|
|
}
|
2017-04-18 19:04:57 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::openDevice: getting device parameters from Rx buddy");
|
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
if (m_deviceAPI->getSourceBuddies().size() == deviceParams->m_nbRxChannels)
|
|
|
|
{
|
2017-04-18 19:04:57 -04:00
|
|
|
qCritical("LimeSDRInput::openDevice: no more Rx channels available in device");
|
2017-04-17 20:12:15 -04:00
|
|
|
return false; // no more Rx channels available in device
|
|
|
|
}
|
2017-04-18 19:04:57 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::openDevice: at least one more Rx channel is available in device");
|
|
|
|
}
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
// look for unused channel number
|
|
|
|
char *busyChannels = new char[deviceParams->m_nbRxChannels];
|
|
|
|
memset(busyChannels, 0, deviceParams->m_nbRxChannels);
|
|
|
|
|
2017-05-25 14:13:34 -04:00
|
|
|
for (unsigned int i = 0; i < m_deviceAPI->getSourceBuddies().size(); i++)
|
2017-04-17 20:12:15 -04:00
|
|
|
{
|
|
|
|
DeviceSourceAPI *buddy = m_deviceAPI->getSourceBuddies()[i];
|
|
|
|
DeviceLimeSDRShared *buddyShared = (DeviceLimeSDRShared *) buddy->getBuddySharedPtr();
|
2017-08-13 21:32:51 -04:00
|
|
|
|
|
|
|
if (buddyShared->m_channel >= 0) {
|
|
|
|
busyChannels[buddyShared->m_channel] = 1;
|
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t ch = 0;
|
|
|
|
|
|
|
|
for (;ch < deviceParams->m_nbRxChannels; ch++)
|
|
|
|
{
|
|
|
|
if (busyChannels[ch] == 0) {
|
|
|
|
break; // first available is the good one
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_deviceShared.m_channel = ch;
|
|
|
|
delete[] busyChannels;
|
|
|
|
}
|
|
|
|
// look for Tx buddies and get reference to common parameters
|
|
|
|
// take the first Rx channel
|
|
|
|
else if (m_deviceAPI->getSinkBuddies().size() > 0) // then sink
|
|
|
|
{
|
2017-04-18 19:04:57 -04:00
|
|
|
qDebug("LimeSDRInput::openDevice: look in Tx buddies");
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
DeviceSinkAPI *sinkBuddy = m_deviceAPI->getSinkBuddies()[0];
|
|
|
|
m_deviceShared = *((DeviceLimeSDRShared *) sinkBuddy->getBuddySharedPtr()); // copy parameters
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams == 0)
|
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::openDevice: cannot get device parameters from Tx buddy");
|
|
|
|
return false; // the device params should have been created by the buddy
|
|
|
|
}
|
2017-04-18 19:04:57 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::openDevice: getting device parameters from Tx buddy");
|
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
m_deviceShared.m_channel = 0; // take first channel
|
|
|
|
}
|
|
|
|
// There are no buddies then create the first LimeSDR common parameters
|
|
|
|
// open the device this will also populate common fields
|
|
|
|
// take the first Rx channel
|
|
|
|
else
|
|
|
|
{
|
2017-04-18 19:04:57 -04:00
|
|
|
qDebug("LimeSDRInput::openDevice: open device here");
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
m_deviceShared.m_deviceParams = new DeviceLimeSDRParams();
|
|
|
|
char serial[256];
|
|
|
|
strcpy(serial, qPrintable(m_deviceAPI->getSampleSourceSerial()));
|
|
|
|
m_deviceShared.m_deviceParams->open(serial);
|
|
|
|
m_deviceShared.m_channel = 0; // take first channel
|
|
|
|
}
|
|
|
|
|
|
|
|
m_deviceAPI->setBuddySharedPtr(&m_deviceShared); // propagate common parameters to API
|
|
|
|
|
|
|
|
// acquire the channel
|
|
|
|
|
|
|
|
if (LMS_EnableChannel(m_deviceShared.m_deviceParams->getDevice(), LMS_CH_RX, m_deviceShared.m_channel, true) != 0)
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
qCritical("LimeSDRInput::openDevice: cannot enable Rx channel %d", m_deviceShared.m_channel);
|
2017-04-17 20:12:15 -04:00
|
|
|
return false;
|
|
|
|
}
|
2017-04-18 19:04:57 -04:00
|
|
|
else
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
qDebug("LimeSDRInput::openDevice: Rx channel %d enabled", m_deviceShared.m_channel);
|
2017-04-18 19:04:57 -04:00
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
|
2017-04-19 02:19:09 -04:00
|
|
|
// set up the stream
|
|
|
|
|
|
|
|
m_streamId.channel = m_deviceShared.m_channel; //channel number
|
2017-04-24 03:57:21 -04:00
|
|
|
m_streamId.fifoSize = 1024 * 1024; //fifo size in samples
|
2017-04-19 02:19:09 -04:00
|
|
|
m_streamId.throughputVsLatency = 1.0; //optimize for max throughput
|
|
|
|
m_streamId.isTx = false; //RX channel
|
|
|
|
m_streamId.dataFmt = lms_stream_t::LMS_FMT_I12; //12-bit integers
|
|
|
|
|
|
|
|
if (LMS_SetupStream(m_deviceShared.m_deviceParams->getDevice(), &m_streamId) != 0)
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
qCritical("LimeSDRInput::start: cannot setup the stream on Rx channel %d", m_deviceShared.m_channel);
|
2017-04-19 02:19:09 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
qDebug("LimeSDRInput::start: stream set up on Rx channel %d", m_deviceShared.m_channel);
|
2017-04-19 02:19:09 -04:00
|
|
|
}
|
|
|
|
|
2017-04-22 22:01:00 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
void LimeSDRInput::suspendRxBuddies()
|
2017-04-22 22:01:00 -04:00
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
const std::vector<DeviceSourceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies();
|
|
|
|
std::vector<DeviceSourceAPI*>::const_iterator itSource = sourceBuddies.begin();
|
2017-04-19 19:39:05 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
for (; itSource != sourceBuddies.end(); ++itSource)
|
2017-04-19 19:39:05 -04:00
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSource)->getBuddySharedPtr();
|
2017-04-19 19:39:05 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
if (buddySharedPtr->m_thread && buddySharedPtr->m_thread->isRunning())
|
|
|
|
{
|
|
|
|
buddySharedPtr->m_thread->stopWork();
|
|
|
|
buddySharedPtr->m_threadWasRunning = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buddySharedPtr->m_threadWasRunning = false;
|
2017-04-19 19:39:05 -04:00
|
|
|
}
|
|
|
|
}
|
2017-09-30 14:07:08 -04:00
|
|
|
}
|
2017-04-19 19:39:05 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
void LimeSDRInput::suspendTxBuddies()
|
|
|
|
{
|
|
|
|
const std::vector<DeviceSinkAPI*>& sinkBuddies = m_deviceAPI->getSinkBuddies();
|
|
|
|
std::vector<DeviceSinkAPI*>::const_iterator itSink = sinkBuddies.begin();
|
2017-04-17 20:12:15 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
for (; itSink != sinkBuddies.end(); ++itSink)
|
2017-04-22 22:01:00 -04:00
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSink)->getBuddySharedPtr();
|
2017-04-22 22:01:00 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
if (buddySharedPtr->m_thread) {
|
|
|
|
buddySharedPtr->m_thread->stopWork();
|
|
|
|
buddySharedPtr->m_threadWasRunning = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
buddySharedPtr->m_threadWasRunning = false;
|
2017-04-22 22:01:00 -04:00
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
2017-04-22 22:01:00 -04:00
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
void LimeSDRInput::resumeRxBuddies()
|
2017-04-22 22:01:00 -04:00
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
const std::vector<DeviceSourceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies();
|
|
|
|
std::vector<DeviceSourceAPI*>::const_iterator itSource = sourceBuddies.begin();
|
2017-04-19 19:39:05 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
for (; itSource != sourceBuddies.end(); ++itSource)
|
2017-04-19 19:39:05 -04:00
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSource)->getBuddySharedPtr();
|
2017-04-19 19:39:05 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
if (buddySharedPtr->m_threadWasRunning) {
|
|
|
|
buddySharedPtr->m_thread->startWork();
|
2017-04-19 19:39:05 -04:00
|
|
|
}
|
|
|
|
}
|
2017-09-30 14:07:08 -04:00
|
|
|
}
|
2017-04-19 19:39:05 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
void LimeSDRInput::resumeTxBuddies()
|
|
|
|
{
|
|
|
|
const std::vector<DeviceSinkAPI*>& sinkBuddies = m_deviceAPI->getSinkBuddies();
|
|
|
|
std::vector<DeviceSinkAPI*>::const_iterator itSink = sinkBuddies.begin();
|
2017-04-22 22:01:00 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
for (; itSink != sinkBuddies.end(); ++itSink)
|
2017-04-22 22:01:00 -04:00
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSink)->getBuddySharedPtr();
|
2017-04-22 22:01:00 -04:00
|
|
|
|
2017-09-30 14:07:08 -04:00
|
|
|
if (buddySharedPtr->m_threadWasRunning) {
|
|
|
|
buddySharedPtr->m_thread->startWork();
|
2017-04-22 22:01:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LimeSDRInput::closeDevice()
|
|
|
|
{
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() == 0) { // was never open
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-30 13:05:16 -04:00
|
|
|
if (m_running) { stop(); }
|
|
|
|
|
2017-04-19 02:19:09 -04:00
|
|
|
// destroy the stream
|
|
|
|
LMS_DestroyStream(m_deviceShared.m_deviceParams->getDevice(), &m_streamId);
|
2017-04-20 17:32:08 -04:00
|
|
|
m_streamId.handle = 0;
|
2017-04-19 02:19:09 -04:00
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
// release the channel
|
|
|
|
|
|
|
|
if (LMS_EnableChannel(m_deviceShared.m_deviceParams->getDevice(), LMS_CH_RX, m_deviceShared.m_channel, false) != 0)
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
qWarning("LimeSDRInput::closeDevice: cannot disable Rx channel %d", m_deviceShared.m_channel);
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
m_deviceShared.m_channel = -1;
|
|
|
|
|
|
|
|
// No buddies so effectively close the device
|
|
|
|
|
|
|
|
if ((m_deviceAPI->getSinkBuddies().size() == 0) && (m_deviceAPI->getSourceBuddies().size() == 0))
|
|
|
|
{
|
|
|
|
m_deviceShared.m_deviceParams->close();
|
|
|
|
delete m_deviceShared.m_deviceParams;
|
|
|
|
m_deviceShared.m_deviceParams = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LimeSDRInput::start()
|
|
|
|
{
|
|
|
|
if (!m_deviceShared.m_deviceParams->getDevice()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-30 13:05:16 -04:00
|
|
|
if (m_running) { stop(); }
|
2017-04-17 20:12:15 -04:00
|
|
|
|
2017-05-13 08:35:12 -04:00
|
|
|
applySettings(m_settings, true);
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
// start / stop streaming is done in the thread.
|
|
|
|
|
|
|
|
if ((m_limeSDRInputThread = new LimeSDRInputThread(&m_streamId, &m_sampleFifo)) == 0)
|
|
|
|
{
|
2017-04-18 02:35:25 -04:00
|
|
|
qFatal("LimeSDRInput::start: cannot create thread");
|
2017-04-17 20:12:15 -04:00
|
|
|
stop();
|
|
|
|
return false;
|
|
|
|
}
|
2017-04-18 02:35:25 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::start: thread created");
|
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
m_limeSDRInputThread->setLog2Decimation(m_settings.m_log2SoftDecim);
|
|
|
|
|
|
|
|
m_limeSDRInputThread->startWork();
|
|
|
|
|
2017-04-22 04:40:57 -04:00
|
|
|
m_deviceShared.m_thread = m_limeSDRInputThread;
|
2017-04-17 20:12:15 -04:00
|
|
|
m_running = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LimeSDRInput::stop()
|
|
|
|
{
|
|
|
|
if (m_limeSDRInputThread != 0)
|
|
|
|
{
|
|
|
|
m_limeSDRInputThread->stopWork();
|
|
|
|
delete m_limeSDRInputThread;
|
|
|
|
m_limeSDRInputThread = 0;
|
|
|
|
}
|
|
|
|
|
2017-04-19 18:01:11 -04:00
|
|
|
m_deviceShared.m_thread = 0;
|
2017-04-17 20:12:15 -04:00
|
|
|
m_running = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString& LimeSDRInput::getDeviceDescription() const
|
|
|
|
{
|
|
|
|
return m_deviceDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LimeSDRInput::getSampleRate() const
|
|
|
|
{
|
|
|
|
int rate = m_settings.m_devSampleRate;
|
2017-04-18 18:00:47 -04:00
|
|
|
return (rate / (1<<m_settings.m_log2SoftDecim));
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
quint64 LimeSDRInput::getCenterFrequency() const
|
|
|
|
{
|
|
|
|
return m_settings.m_centerFrequency;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t LimeSDRInput::getChannelIndex()
|
|
|
|
{
|
|
|
|
return m_deviceShared.m_channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LimeSDRInput::getLORange(float& minF, float& maxF, float& stepF) const
|
|
|
|
{
|
|
|
|
lms_range_t range = m_deviceShared.m_deviceParams->m_loRangeRx;
|
|
|
|
minF = range.min;
|
|
|
|
maxF = range.max;
|
|
|
|
stepF = range.step;
|
|
|
|
qDebug("LimeSDRInput::getLORange: min: %f max: %f step: %f", range.min, range.max, range.step);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LimeSDRInput::getSRRange(float& minF, float& maxF, float& stepF) const
|
|
|
|
{
|
|
|
|
lms_range_t range = m_deviceShared.m_deviceParams->m_srRangeRx;
|
|
|
|
minF = range.min;
|
|
|
|
maxF = range.max;
|
|
|
|
stepF = range.step;
|
|
|
|
qDebug("LimeSDRInput::getSRRange: min: %f max: %f step: %f", range.min, range.max, range.step);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LimeSDRInput::getLPRange(float& minF, float& maxF, float& stepF) const
|
|
|
|
{
|
|
|
|
lms_range_t range = m_deviceShared.m_deviceParams->m_lpfRangeRx;
|
|
|
|
minF = range.min;
|
|
|
|
maxF = range.max;
|
|
|
|
stepF = range.step;
|
|
|
|
qDebug("LimeSDRInput::getLPRange: min: %f max: %f step: %f", range.min, range.max, range.step);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t LimeSDRInput::getHWLog2Decim() const
|
|
|
|
{
|
|
|
|
return m_deviceShared.m_deviceParams->m_log2OvSRRx;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LimeSDRInput::handleMessage(const Message& message)
|
|
|
|
{
|
|
|
|
if (MsgConfigureLimeSDR::match(message))
|
|
|
|
{
|
|
|
|
MsgConfigureLimeSDR& conf = (MsgConfigureLimeSDR&) message;
|
|
|
|
qDebug() << "LimeSDRInput::handleMessage: MsgConfigureLimeSDR";
|
|
|
|
|
|
|
|
if (!applySettings(conf.getSettings(), m_firstConfig))
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::handleMessage config error");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_firstConfig = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-09-17 19:05:08 -04:00
|
|
|
else if (MsgReportLimeSDRToBuddy::match(message))
|
2017-04-17 20:12:15 -04:00
|
|
|
{
|
2017-09-17 19:05:08 -04:00
|
|
|
MsgReportLimeSDRToBuddy& conf = (MsgReportLimeSDRToBuddy&) message;
|
|
|
|
m_settings.m_centerFrequency = conf.getCenterFrequency();
|
|
|
|
m_settings.m_devSampleRate = conf.getSampleRate();
|
|
|
|
m_settings.m_log2HardDecim = conf.getLog2HardDecim();
|
|
|
|
|
2017-09-17 19:42:45 -04:00
|
|
|
qDebug() << "LimeSDRInput::handleMessage: MsgReportLimeSDRToBuddy:"
|
|
|
|
<< " m_centerFrequency: " << conf.getCenterFrequency()
|
|
|
|
<< " m_devSampleRate: " << conf.getSampleRate()
|
|
|
|
<< " m_log2HardDecim: " << conf.getLog2HardDecim();
|
|
|
|
|
2017-09-17 19:05:08 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (DeviceLimeSDRShared::MsgCrossReportToBuddy::match(message))
|
|
|
|
{
|
|
|
|
DeviceLimeSDRShared::MsgCrossReportToBuddy& conf = (DeviceLimeSDRShared::MsgCrossReportToBuddy&) message;
|
|
|
|
m_settings.m_devSampleRate = conf.getSampleRate();
|
|
|
|
|
2017-09-17 19:42:45 -04:00
|
|
|
qDebug() << "LimeSDRInput::handleMessage: MsgCrossReportToBuddy:"
|
|
|
|
<< " m_devSampleRate: " << conf.getSampleRate();
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
return true;
|
|
|
|
}
|
2017-04-19 12:41:55 -04:00
|
|
|
else if (MsgGetStreamInfo::match(message))
|
|
|
|
{
|
2017-04-19 18:48:00 -04:00
|
|
|
// qDebug() << "LimeSDRInput::handleMessage: MsgGetStreamInfo";
|
2017-04-19 12:41:55 -04:00
|
|
|
lms_stream_status_t status;
|
|
|
|
|
2017-04-20 18:14:55 -04:00
|
|
|
if (m_streamId.handle && (LMS_GetStreamStatus(&m_streamId, &status) == 0))
|
2017-04-19 12:41:55 -04:00
|
|
|
{
|
2017-09-17 11:35:03 -04:00
|
|
|
if (m_deviceAPI->getSampleSourceGUIMessageQueue())
|
|
|
|
{
|
|
|
|
MsgReportStreamInfo *report = MsgReportStreamInfo::create(
|
|
|
|
true, // Success
|
|
|
|
status.active,
|
|
|
|
status.fifoFilledCount,
|
|
|
|
status.fifoSize,
|
|
|
|
status.underrun,
|
|
|
|
status.overrun,
|
|
|
|
status.droppedPackets,
|
|
|
|
status.sampleRate,
|
|
|
|
status.linkRate,
|
|
|
|
status.timestamp);
|
|
|
|
m_deviceAPI->getSampleSourceGUIMessageQueue()->push(report);
|
|
|
|
}
|
2017-04-19 12:41:55 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-09-17 11:35:03 -04:00
|
|
|
if (m_deviceAPI->getSampleSourceGUIMessageQueue())
|
|
|
|
{
|
|
|
|
MsgReportStreamInfo *report = MsgReportStreamInfo::create(
|
|
|
|
false, // Success
|
|
|
|
false, // status.active,
|
|
|
|
0, // status.fifoFilledCount,
|
|
|
|
16384, // status.fifoSize,
|
|
|
|
0, // status.underrun,
|
|
|
|
0, // status.overrun,
|
|
|
|
0, // status.droppedPackets,
|
|
|
|
0, // status.sampleRate,
|
|
|
|
0, // status.linkRate,
|
|
|
|
0); // status.timestamp);
|
|
|
|
m_deviceAPI->getSampleSourceGUIMessageQueue()->push(report);
|
|
|
|
}
|
2017-04-19 12:41:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-07-03 07:42:11 -04:00
|
|
|
else if (MsgGetDeviceInfo::match(message))
|
|
|
|
{
|
2017-07-03 17:26:06 -04:00
|
|
|
double temp = 0.0;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() && (LMS_GetChipTemperature(m_deviceShared.m_deviceParams->getDevice(), 0, &temp) == 0))
|
2017-07-03 07:42:11 -04:00
|
|
|
{
|
2017-07-03 17:26:06 -04:00
|
|
|
//qDebug("LimeSDRInput::handleMessage: MsgGetDeviceInfo: temperature: %f", temp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::handleMessage: MsgGetDeviceInfo: cannot get temperature");
|
|
|
|
}
|
2017-07-03 07:42:11 -04:00
|
|
|
|
2017-07-03 17:26:06 -04:00
|
|
|
// send to oneself
|
2017-09-17 11:35:03 -04:00
|
|
|
if (m_deviceAPI->getSampleSourceGUIMessageQueue()) {
|
|
|
|
DeviceLimeSDRShared::MsgReportDeviceInfo *report = DeviceLimeSDRShared::MsgReportDeviceInfo::create(temp);
|
|
|
|
m_deviceAPI->getSampleSourceGUIMessageQueue()->push(report);
|
|
|
|
}
|
2017-07-03 07:42:11 -04:00
|
|
|
|
2017-07-03 17:26:06 -04:00
|
|
|
// send to source buddies
|
|
|
|
const std::vector<DeviceSourceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies();
|
|
|
|
std::vector<DeviceSourceAPI*>::const_iterator itSource = sourceBuddies.begin();
|
2017-07-03 07:42:11 -04:00
|
|
|
|
2017-07-03 17:26:06 -04:00
|
|
|
for (; itSource != sourceBuddies.end(); ++itSource)
|
|
|
|
{
|
2017-09-17 11:35:03 -04:00
|
|
|
if ((*itSource)->getSampleSourceGUIMessageQueue())
|
|
|
|
{
|
|
|
|
DeviceLimeSDRShared::MsgReportDeviceInfo *report = DeviceLimeSDRShared::MsgReportDeviceInfo::create(temp);
|
|
|
|
(*itSource)->getSampleSourceGUIMessageQueue()->push(report);
|
|
|
|
}
|
2017-07-03 17:26:06 -04:00
|
|
|
}
|
2017-07-03 07:42:11 -04:00
|
|
|
|
2017-07-03 17:26:06 -04:00
|
|
|
// send to sink buddies
|
|
|
|
const std::vector<DeviceSinkAPI*>& sinkBuddies = m_deviceAPI->getSinkBuddies();
|
|
|
|
std::vector<DeviceSinkAPI*>::const_iterator itSink = sinkBuddies.begin();
|
2017-07-03 07:42:11 -04:00
|
|
|
|
2017-07-03 17:26:06 -04:00
|
|
|
for (; itSink != sinkBuddies.end(); ++itSink)
|
|
|
|
{
|
2017-09-17 11:35:03 -04:00
|
|
|
if ((*itSink)->getSampleSinkGUIMessageQueue())
|
|
|
|
{
|
|
|
|
DeviceLimeSDRShared::MsgReportDeviceInfo *report = DeviceLimeSDRShared::MsgReportDeviceInfo::create(temp);
|
|
|
|
(*itSink)->getSampleSinkGUIMessageQueue()->push(report);
|
|
|
|
}
|
2017-07-03 07:42:11 -04:00
|
|
|
}
|
2017-07-03 16:35:08 -04:00
|
|
|
|
|
|
|
return true;
|
2017-07-03 07:42:11 -04:00
|
|
|
}
|
2017-09-04 18:00:33 -04:00
|
|
|
else if (MsgFileRecord::match(message))
|
|
|
|
{
|
|
|
|
MsgFileRecord& conf = (MsgFileRecord&) message;
|
|
|
|
qDebug() << "LimeSDRInput::handleMessage: MsgFileRecord: " << conf.getStartStop();
|
|
|
|
|
|
|
|
if (conf.getStartStop()) {
|
|
|
|
m_fileSink->startRecording();
|
|
|
|
} else {
|
|
|
|
m_fileSink->stopRecording();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-04-17 20:12:15 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LimeSDRInput::applySettings(const LimeSDRInputSettings& settings, bool force)
|
|
|
|
{
|
|
|
|
bool forwardChangeOwnDSP = false;
|
|
|
|
bool forwardChangeRxDSP = false;
|
|
|
|
bool forwardChangeAllDSP = false;
|
2017-04-19 18:01:11 -04:00
|
|
|
bool suspendOwnThread = false;
|
2017-08-13 21:32:51 -04:00
|
|
|
bool ownThreadWasRunning = false;
|
2017-04-19 18:01:11 -04:00
|
|
|
bool suspendRxThread = false;
|
|
|
|
bool suspendAllThread = false;
|
2017-04-18 07:50:28 -04:00
|
|
|
bool doCalibration = false;
|
2017-04-23 10:23:01 -04:00
|
|
|
bool setAntennaAuto = false;
|
2017-08-04 04:31:54 -04:00
|
|
|
bool forceNCOFrequency = false;
|
2017-04-17 20:12:15 -04:00
|
|
|
// QMutexLocker mutexLocker(&m_mutex);
|
|
|
|
|
2017-04-19 18:01:11 -04:00
|
|
|
// determine if buddies threads or own thread need to be suspended
|
|
|
|
|
|
|
|
if ((m_settings.m_devSampleRate != settings.m_devSampleRate) || force)
|
|
|
|
{
|
|
|
|
suspendAllThread = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_log2HardDecim != settings.m_log2HardDecim) ||
|
|
|
|
(m_settings.m_centerFrequency != settings.m_centerFrequency) || force)
|
|
|
|
{
|
|
|
|
suspendRxThread = true;
|
|
|
|
}
|
|
|
|
|
2017-04-23 10:23:01 -04:00
|
|
|
if ((m_settings.m_antennaPath != settings.m_antennaPath) &&
|
|
|
|
(m_settings.m_antennaPath == 0))
|
|
|
|
{
|
|
|
|
suspendRxThread = true;
|
|
|
|
}
|
|
|
|
|
2017-04-19 18:01:11 -04:00
|
|
|
if ((m_settings.m_gain != settings.m_gain) ||
|
2017-04-19 02:34:27 -04:00
|
|
|
(m_settings.m_lpfBW != settings.m_lpfBW) ||
|
|
|
|
(m_settings.m_lpfFIRBW != settings.m_lpfFIRBW) ||
|
2017-04-20 12:21:01 -04:00
|
|
|
(m_settings.m_lpfFIREnable != settings.m_lpfFIREnable) ||
|
|
|
|
(m_settings.m_ncoEnable != settings.m_ncoEnable) ||
|
2017-04-23 10:23:01 -04:00
|
|
|
(m_settings.m_ncoFrequency != settings.m_ncoFrequency) ||
|
|
|
|
(m_settings.m_antennaPath != settings.m_antennaPath) || force)
|
2017-04-19 02:34:27 -04:00
|
|
|
{
|
2017-04-19 18:01:11 -04:00
|
|
|
suspendOwnThread = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// suspend buddies threads or own thread
|
|
|
|
|
|
|
|
if (suspendAllThread)
|
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
suspendRxBuddies();
|
|
|
|
suspendTxBuddies();
|
2017-04-19 18:01:11 -04:00
|
|
|
|
2017-08-13 21:32:51 -04:00
|
|
|
if (m_limeSDRInputThread && m_limeSDRInputThread->isRunning())
|
|
|
|
{
|
2017-04-19 18:01:11 -04:00
|
|
|
m_limeSDRInputThread->stopWork();
|
2017-08-13 21:32:51 -04:00
|
|
|
ownThreadWasRunning = true;
|
2017-04-19 18:01:11 -04:00
|
|
|
}
|
2017-04-19 02:34:27 -04:00
|
|
|
}
|
2017-04-19 18:01:11 -04:00
|
|
|
else if (suspendRxThread)
|
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
suspendRxBuddies();
|
2017-04-19 18:01:11 -04:00
|
|
|
|
2017-08-13 21:32:51 -04:00
|
|
|
if (m_limeSDRInputThread && m_limeSDRInputThread->isRunning())
|
|
|
|
{
|
2017-04-19 18:01:11 -04:00
|
|
|
m_limeSDRInputThread->stopWork();
|
2017-08-13 21:32:51 -04:00
|
|
|
ownThreadWasRunning = true;
|
2017-04-19 18:01:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (suspendOwnThread)
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
if (m_limeSDRInputThread && m_limeSDRInputThread->isRunning())
|
|
|
|
{
|
2017-04-19 18:01:11 -04:00
|
|
|
m_limeSDRInputThread->stopWork();
|
2017-08-13 21:32:51 -04:00
|
|
|
ownThreadWasRunning = true;
|
2017-04-19 18:01:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// apply settings
|
2017-04-19 02:34:27 -04:00
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
if ((m_settings.m_dcBlock != settings.m_dcBlock) || force)
|
|
|
|
{
|
|
|
|
m_settings.m_dcBlock = settings.m_dcBlock;
|
|
|
|
m_deviceAPI->configureCorrections(m_settings.m_dcBlock, m_settings.m_iqCorrection);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_iqCorrection != settings.m_iqCorrection) || force)
|
|
|
|
{
|
|
|
|
m_settings.m_iqCorrection = settings.m_iqCorrection;
|
|
|
|
m_deviceAPI->configureCorrections(m_settings.m_dcBlock, m_settings.m_iqCorrection);
|
|
|
|
}
|
|
|
|
|
2017-07-04 18:45:37 -04:00
|
|
|
if ((m_settings.m_gainMode != settings.m_gainMode) || force)
|
|
|
|
{
|
|
|
|
m_settings.m_gainMode = settings.m_gainMode;
|
|
|
|
|
|
|
|
if (m_settings.m_gainMode == LimeSDRInputSettings::GAIN_AUTO)
|
|
|
|
{
|
|
|
|
m_settings.m_gain = settings.m_gain;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (LMS_SetGaindB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_gain) < 0)
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: LMS_SetGaindB() failed");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//doCalibration = true;
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: Gain set to " << m_settings.m_gain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_settings.m_lnaGain = settings.m_lnaGain;
|
|
|
|
m_settings.m_tiaGain = settings.m_tiaGain;
|
|
|
|
m_settings.m_pgaGain = settings.m_pgaGain;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (DeviceLimeSDR::SetRFELNA_dB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_lnaGain))
|
|
|
|
{
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: LNA gain set to " << m_settings.m_lnaGain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: DeviceLimeSDR::SetRFELNA_dB() failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DeviceLimeSDR::SetRFETIA_dB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_tiaGain))
|
|
|
|
{
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: TIA gain set to " << m_settings.m_tiaGain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: DeviceLimeSDR::SetRFETIA_dB() failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DeviceLimeSDR::SetRBBPGA_dB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_pgaGain))
|
|
|
|
{
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: PGA gain set to " << m_settings.m_pgaGain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: DeviceLimeSDR::SetRBBPGA_dB() failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_gainMode == LimeSDRInputSettings::GAIN_AUTO) && (m_settings.m_gain != settings.m_gain))
|
2017-04-17 20:12:15 -04:00
|
|
|
{
|
|
|
|
m_settings.m_gain = settings.m_gain;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (LMS_SetGaindB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_gain) < 0)
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: LMS_SetGaindB() failed");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-05-08 05:02:31 -04:00
|
|
|
//doCalibration = true;
|
2017-04-17 20:12:15 -04:00
|
|
|
qDebug() << "LimeSDRInput::applySettings: Gain set to " << m_settings.m_gain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-04 18:45:37 -04:00
|
|
|
if ((m_settings.m_gainMode == LimeSDRInputSettings::GAIN_MANUAL) && (m_settings.m_lnaGain != settings.m_lnaGain))
|
|
|
|
{
|
|
|
|
m_settings.m_lnaGain = settings.m_lnaGain;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (DeviceLimeSDR::SetRFELNA_dB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_lnaGain))
|
|
|
|
{
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: LNA gain set to " << m_settings.m_lnaGain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: DeviceLimeSDR::SetRFELNA_dB() failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_gainMode == LimeSDRInputSettings::GAIN_MANUAL) && (m_settings.m_tiaGain != settings.m_tiaGain))
|
|
|
|
{
|
|
|
|
m_settings.m_tiaGain = settings.m_tiaGain;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (DeviceLimeSDR::SetRFETIA_dB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_tiaGain))
|
|
|
|
{
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: TIA gain set to " << m_settings.m_tiaGain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: DeviceLimeSDR::SetRFETIA_dB() failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_gainMode == LimeSDRInputSettings::GAIN_MANUAL) && (m_settings.m_pgaGain != settings.m_pgaGain))
|
|
|
|
{
|
|
|
|
m_settings.m_pgaGain = settings.m_pgaGain;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (DeviceLimeSDR::SetRBBPGA_dB(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_pgaGain))
|
|
|
|
{
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: PGA gain set to " << m_settings.m_pgaGain;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug("LimeSDRInput::applySettings: DeviceLimeSDR::SetRBBPGA_dB() failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
if ((m_settings.m_devSampleRate != settings.m_devSampleRate)
|
|
|
|
|| (m_settings.m_log2HardDecim != settings.m_log2HardDecim) || force)
|
|
|
|
{
|
|
|
|
forwardChangeRxDSP = m_settings.m_log2HardDecim != settings.m_log2HardDecim;
|
|
|
|
forwardChangeAllDSP = m_settings.m_devSampleRate != settings.m_devSampleRate;
|
|
|
|
|
|
|
|
m_settings.m_devSampleRate = settings.m_devSampleRate;
|
|
|
|
m_settings.m_log2HardDecim = settings.m_log2HardDecim;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (LMS_SetSampleRateDir(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_settings.m_devSampleRate,
|
|
|
|
1<<m_settings.m_log2HardDecim) < 0)
|
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::applySettings: could not set sample rate to %d with oversampling of %d",
|
|
|
|
m_settings.m_devSampleRate,
|
|
|
|
1<<m_settings.m_log2HardDecim);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_deviceShared.m_deviceParams->m_log2OvSRRx = m_settings.m_log2HardDecim;
|
|
|
|
m_deviceShared.m_deviceParams->m_sampleRate = m_settings.m_devSampleRate;
|
2017-04-18 07:50:28 -04:00
|
|
|
doCalibration = true;
|
2017-08-04 04:31:54 -04:00
|
|
|
forceNCOFrequency = true;
|
2017-04-17 20:12:15 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: set sample rate set to %d with oversampling of %d",
|
|
|
|
m_settings.m_devSampleRate,
|
|
|
|
1<<m_settings.m_log2HardDecim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_lpfBW != settings.m_lpfBW) || force)
|
|
|
|
{
|
|
|
|
m_settings.m_lpfBW = settings.m_lpfBW;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (LMS_SetLPFBW(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_lpfBW) < 0)
|
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::applySettings: could not set LPF to %f Hz", m_settings.m_lpfBW);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-18 07:50:28 -04:00
|
|
|
doCalibration = true;
|
2017-04-17 20:12:15 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: LPF set to %f Hz", m_settings.m_lpfBW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_lpfFIRBW != settings.m_lpfFIRBW) ||
|
|
|
|
(m_settings.m_lpfFIREnable != settings.m_lpfFIREnable) || force)
|
|
|
|
{
|
|
|
|
m_settings.m_lpfFIRBW = settings.m_lpfFIRBW;
|
|
|
|
m_settings.m_lpfFIREnable = settings.m_lpfFIREnable;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (LMS_SetGFIRLPF(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_lpfFIREnable,
|
|
|
|
m_settings.m_lpfFIRBW) < 0)
|
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::applySettings: could %s and set LPF FIR to %f Hz",
|
|
|
|
m_settings.m_lpfFIREnable ? "enable" : "disable",
|
|
|
|
m_settings.m_lpfFIRBW);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-18 07:50:28 -04:00
|
|
|
doCalibration = true;
|
2017-04-17 20:12:15 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: %sd and set LPF FIR to %f Hz",
|
|
|
|
m_settings.m_lpfFIREnable ? "enable" : "disable",
|
|
|
|
m_settings.m_lpfFIRBW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 12:21:01 -04:00
|
|
|
if ((m_settings.m_ncoFrequency != settings.m_ncoFrequency) ||
|
2017-08-04 04:31:54 -04:00
|
|
|
(m_settings.m_ncoEnable != settings.m_ncoEnable) || force || forceNCOFrequency)
|
2017-04-20 12:21:01 -04:00
|
|
|
{
|
|
|
|
m_settings.m_ncoFrequency = settings.m_ncoFrequency;
|
|
|
|
m_settings.m_ncoEnable = settings.m_ncoEnable;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (DeviceLimeSDR::setNCOFrequency(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_ncoEnable,
|
|
|
|
m_settings.m_ncoFrequency))
|
|
|
|
{
|
2017-05-08 05:02:31 -04:00
|
|
|
//doCalibration = true;
|
2017-04-20 17:02:06 -04:00
|
|
|
forwardChangeOwnDSP = true;
|
2017-04-20 17:43:24 -04:00
|
|
|
m_deviceShared.m_ncoFrequency = m_settings.m_ncoEnable ? m_settings.m_ncoFrequency : 0; // for buddies
|
2017-04-20 14:18:50 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: %sd and set NCO to %d Hz",
|
2017-04-20 12:21:01 -04:00
|
|
|
m_settings.m_ncoEnable ? "enable" : "disable",
|
|
|
|
m_settings.m_ncoFrequency);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-20 14:18:50 -04:00
|
|
|
qCritical("LimeSDRInput::applySettings: could not %s and set NCO to %d Hz",
|
2017-04-20 12:21:01 -04:00
|
|
|
m_settings.m_ncoEnable ? "enable" : "disable",
|
|
|
|
m_settings.m_ncoFrequency);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
if ((m_settings.m_log2SoftDecim != settings.m_log2SoftDecim) || force)
|
|
|
|
{
|
|
|
|
m_settings.m_log2SoftDecim = settings.m_log2SoftDecim;
|
|
|
|
forwardChangeOwnDSP = true;
|
2017-04-22 21:36:10 -04:00
|
|
|
m_deviceShared.m_log2Soft = m_settings.m_log2SoftDecim; // for buddies
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
if (m_limeSDRInputThread != 0)
|
|
|
|
{
|
|
|
|
m_limeSDRInputThread->setLog2Decimation(m_settings.m_log2SoftDecim);
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: set soft decimation to " << (1<<m_settings.m_log2SoftDecim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 10:23:01 -04:00
|
|
|
if ((m_settings.m_antennaPath != settings.m_antennaPath) || force)
|
|
|
|
{
|
|
|
|
m_settings.m_antennaPath = settings.m_antennaPath;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
2017-05-06 19:47:31 -04:00
|
|
|
if (DeviceLimeSDR::setRxAntennaPath(m_deviceShared.m_deviceParams->getDevice(),
|
2017-04-23 10:23:01 -04:00
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_antennaPath))
|
|
|
|
{
|
|
|
|
doCalibration = true;
|
|
|
|
setAntennaAuto = (m_settings.m_antennaPath == 0);
|
|
|
|
qDebug("LimeSDRInput::applySettings: set antenna path to %d",
|
|
|
|
(int) m_settings.m_antennaPath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::applySettings: could not set antenna path to %d",
|
|
|
|
(int) m_settings.m_antennaPath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((m_settings.m_centerFrequency != settings.m_centerFrequency) || setAntennaAuto || force)
|
2017-04-17 20:12:15 -04:00
|
|
|
{
|
|
|
|
m_settings.m_centerFrequency = settings.m_centerFrequency;
|
|
|
|
forwardChangeRxDSP = true;
|
|
|
|
|
|
|
|
if (m_deviceShared.m_deviceParams->getDevice() != 0)
|
|
|
|
{
|
|
|
|
if (LMS_SetLOFrequency(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_deviceShared.m_channel, // same for both channels anyway but switches antenna port automatically
|
2017-04-20 18:14:55 -04:00
|
|
|
m_settings.m_centerFrequency) < 0)
|
2017-04-17 20:12:15 -04:00
|
|
|
{
|
|
|
|
qCritical("LimeSDRInput::applySettings: could not set frequency to %lu", m_settings.m_centerFrequency);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-04-18 07:50:28 -04:00
|
|
|
doCalibration = true;
|
2017-04-20 18:14:55 -04:00
|
|
|
m_deviceShared.m_centerFrequency = m_settings.m_centerFrequency; // for buddies
|
2017-04-17 20:12:15 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: frequency set to %lu", m_settings.m_centerFrequency);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-20 12:21:01 -04:00
|
|
|
|
2017-04-18 07:50:28 -04:00
|
|
|
if (doCalibration)
|
|
|
|
{
|
|
|
|
if (LMS_Calibrate(m_deviceShared.m_deviceParams->getDevice(),
|
|
|
|
LMS_CH_RX,
|
|
|
|
m_deviceShared.m_channel,
|
|
|
|
m_settings.m_lpfBW,
|
|
|
|
0) < 0)
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
qCritical("LimeSDRInput::applySettings: calibration failed on Rx channel %d", m_deviceShared.m_channel);
|
2017-04-18 07:50:28 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: calibration successful on Rx channel %d", m_deviceShared.m_channel);
|
2017-04-18 07:50:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 18:01:11 -04:00
|
|
|
// resume buddies threads or own thread
|
|
|
|
|
|
|
|
if (suspendAllThread)
|
2017-04-18 17:26:30 -04:00
|
|
|
{
|
2017-09-30 14:07:08 -04:00
|
|
|
resumeTxBuddies();
|
|
|
|
resumeRxBuddies();
|
2017-04-19 18:01:11 -04:00
|
|
|
|
2017-08-13 21:32:51 -04:00
|
|
|
if (ownThreadWasRunning) {
|
2017-04-19 18:01:11 -04:00
|
|
|
m_limeSDRInputThread->startWork();
|
|
|
|
}
|
2017-04-18 17:26:30 -04:00
|
|
|
}
|
2017-04-19 18:01:11 -04:00
|
|
|
else if (suspendRxThread)
|
|
|
|
{
|
|
|
|
const std::vector<DeviceSourceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies();
|
|
|
|
std::vector<DeviceSourceAPI*>::const_iterator itSource = sourceBuddies.begin();
|
|
|
|
|
|
|
|
for (; itSource != sourceBuddies.end(); ++itSource)
|
|
|
|
{
|
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSource)->getBuddySharedPtr();
|
2017-04-22 04:40:57 -04:00
|
|
|
|
2017-08-13 21:32:51 -04:00
|
|
|
if (buddySharedPtr->m_threadWasRunning) {
|
2017-04-22 04:40:57 -04:00
|
|
|
buddySharedPtr->m_thread->startWork();
|
2017-04-19 18:01:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-13 21:32:51 -04:00
|
|
|
if (ownThreadWasRunning) {
|
2017-04-19 18:01:11 -04:00
|
|
|
m_limeSDRInputThread->startWork();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (suspendOwnThread)
|
|
|
|
{
|
2017-08-13 21:32:51 -04:00
|
|
|
if (ownThreadWasRunning) {
|
2017-04-19 18:01:11 -04:00
|
|
|
m_limeSDRInputThread->startWork();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// forward changes to buddies or oneself
|
2017-04-18 17:26:30 -04:00
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
if (forwardChangeAllDSP)
|
|
|
|
{
|
2017-04-18 19:04:57 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: forward change to all buddies");
|
|
|
|
|
2017-04-20 17:02:06 -04:00
|
|
|
int ncoShift = m_settings.m_ncoEnable ? m_settings.m_ncoFrequency : 0;
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
// send to self first
|
2017-04-22 21:36:10 -04:00
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(
|
|
|
|
m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftDecim),
|
|
|
|
m_settings.m_centerFrequency + ncoShift);
|
2017-09-13 17:40:06 -04:00
|
|
|
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif);
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
// send to source buddies
|
2017-04-22 00:37:36 -04:00
|
|
|
const std::vector<DeviceSourceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies();
|
|
|
|
std::vector<DeviceSourceAPI*>::const_iterator itSource = sourceBuddies.begin();
|
|
|
|
|
2017-04-17 20:12:15 -04:00
|
|
|
for (; itSource != sourceBuddies.end(); ++itSource)
|
|
|
|
{
|
2017-04-20 17:43:24 -04:00
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSource)->getBuddySharedPtr();
|
|
|
|
int buddyNCOFreq = buddySharedPtr->m_ncoFrequency;
|
2017-04-22 21:36:10 -04:00
|
|
|
uint32_t buddyLog2Decim = buddySharedPtr->m_log2Soft;
|
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(
|
|
|
|
m_settings.m_devSampleRate/(1<<buddyLog2Decim),
|
|
|
|
m_settings.m_centerFrequency + buddyNCOFreq);
|
2017-09-13 17:40:06 -04:00
|
|
|
(*itSource)->getDeviceEngineInputMessageQueue()->push(notif);
|
2017-09-17 11:35:03 -04:00
|
|
|
|
2017-09-17 19:05:08 -04:00
|
|
|
MsgReportLimeSDRToBuddy *report = MsgReportLimeSDRToBuddy::create(
|
|
|
|
m_settings.m_centerFrequency,
|
|
|
|
m_settings.m_devSampleRate,
|
|
|
|
m_settings.m_log2HardDecim);
|
|
|
|
|
2017-09-17 11:35:03 -04:00
|
|
|
if ((*itSource)->getSampleSourceGUIMessageQueue())
|
|
|
|
{
|
2017-09-17 19:05:08 -04:00
|
|
|
MsgReportLimeSDRToBuddy *reportToGUI = new MsgReportLimeSDRToBuddy(*report);
|
|
|
|
(*itSource)->getSampleSourceGUIMessageQueue()->push(reportToGUI);
|
2017-09-17 11:35:03 -04:00
|
|
|
}
|
2017-09-17 19:05:08 -04:00
|
|
|
|
|
|
|
(*itSource)->getSampleSourceInputMessageQueue()->push(report);
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// send to sink buddies
|
|
|
|
const std::vector<DeviceSinkAPI*>& sinkBuddies = m_deviceAPI->getSinkBuddies();
|
|
|
|
std::vector<DeviceSinkAPI*>::const_iterator itSink = sinkBuddies.begin();
|
|
|
|
|
|
|
|
for (; itSink != sinkBuddies.end(); ++itSink)
|
|
|
|
{
|
2017-04-20 18:14:55 -04:00
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSink)->getBuddySharedPtr();
|
|
|
|
uint64_t buddyCenterFreq = buddySharedPtr->m_centerFrequency;
|
|
|
|
int buddyNCOFreq = buddySharedPtr->m_ncoFrequency;
|
2017-04-22 21:36:10 -04:00
|
|
|
uint32_t buddyLog2Interp = buddySharedPtr->m_log2Soft;
|
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(
|
|
|
|
m_settings.m_devSampleRate/(1<<buddyLog2Interp),
|
|
|
|
buddyCenterFreq + buddyNCOFreq); // do not change center frequency
|
2017-09-13 17:42:28 -04:00
|
|
|
(*itSink)->getDeviceEngineInputMessageQueue()->push(notif);
|
2017-09-17 11:35:03 -04:00
|
|
|
|
2017-09-17 19:05:08 -04:00
|
|
|
DeviceLimeSDRShared::MsgCrossReportToBuddy *report = DeviceLimeSDRShared::MsgCrossReportToBuddy::create(m_settings.m_devSampleRate);
|
|
|
|
|
2017-09-17 11:35:03 -04:00
|
|
|
if ((*itSink)->getSampleSinkGUIMessageQueue())
|
|
|
|
{
|
2017-09-17 19:05:08 -04:00
|
|
|
DeviceLimeSDRShared::MsgCrossReportToBuddy *reportToGUI = new DeviceLimeSDRShared::MsgCrossReportToBuddy(*report);
|
|
|
|
(*itSink)->getSampleSinkGUIMessageQueue()->push(reportToGUI);
|
2017-09-17 11:35:03 -04:00
|
|
|
}
|
2017-09-17 19:05:08 -04:00
|
|
|
|
|
|
|
(*itSink)->getSampleSinkInputMessageQueue()->push(report);
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (forwardChangeRxDSP)
|
|
|
|
{
|
2017-04-18 19:04:57 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: forward change to Rx buddies");
|
|
|
|
|
2017-04-18 07:33:33 -04:00
|
|
|
int sampleRate = m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftDecim);
|
2017-04-20 17:02:06 -04:00
|
|
|
int ncoShift = m_settings.m_ncoEnable ? m_settings.m_ncoFrequency : 0;
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
// send to self first
|
2017-04-20 17:02:06 -04:00
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(sampleRate, m_settings.m_centerFrequency + ncoShift);
|
2017-09-13 17:40:06 -04:00
|
|
|
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif);
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
// send to source buddies
|
2017-04-22 00:37:36 -04:00
|
|
|
const std::vector<DeviceSourceAPI*>& sourceBuddies = m_deviceAPI->getSourceBuddies();
|
|
|
|
std::vector<DeviceSourceAPI*>::const_iterator itSource = sourceBuddies.begin();
|
|
|
|
|
2017-04-20 17:43:24 -04:00
|
|
|
for (; itSource != sourceBuddies.end(); ++itSource)
|
2017-04-17 20:12:15 -04:00
|
|
|
{
|
2017-04-20 17:43:24 -04:00
|
|
|
DeviceLimeSDRShared *buddySharedPtr = (DeviceLimeSDRShared *) (*itSource)->getBuddySharedPtr();
|
|
|
|
int buddyNCOFreq = buddySharedPtr->m_ncoFrequency;
|
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(sampleRate, m_settings.m_centerFrequency + buddyNCOFreq);
|
2017-09-13 17:40:06 -04:00
|
|
|
(*itSource)->getDeviceEngineInputMessageQueue()->push(notif);
|
2017-09-17 11:35:03 -04:00
|
|
|
|
2017-09-17 19:05:08 -04:00
|
|
|
MsgReportLimeSDRToBuddy *report = MsgReportLimeSDRToBuddy::create(
|
|
|
|
m_settings.m_centerFrequency,
|
|
|
|
m_settings.m_devSampleRate,
|
|
|
|
m_settings.m_log2HardDecim);
|
|
|
|
|
2017-09-17 11:35:03 -04:00
|
|
|
if ((*itSource)->getSampleSourceGUIMessageQueue())
|
|
|
|
{
|
2017-09-17 19:05:08 -04:00
|
|
|
MsgReportLimeSDRToBuddy *reportToGUI = new MsgReportLimeSDRToBuddy(*report);
|
|
|
|
(*itSource)->getSampleSourceGUIMessageQueue()->push(reportToGUI);
|
2017-09-17 11:35:03 -04:00
|
|
|
}
|
2017-09-17 19:05:08 -04:00
|
|
|
|
|
|
|
(*itSource)->getSampleSourceInputMessageQueue()->push(report);
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (forwardChangeOwnDSP)
|
|
|
|
{
|
2017-04-18 19:04:57 -04:00
|
|
|
qDebug("LimeSDRInput::applySettings: forward change to self only");
|
|
|
|
|
2017-04-18 07:33:33 -04:00
|
|
|
int sampleRate = m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftDecim);
|
2017-04-20 17:02:06 -04:00
|
|
|
int ncoShift = m_settings.m_ncoEnable ? m_settings.m_ncoFrequency : 0;
|
|
|
|
DSPSignalNotification *notif = new DSPSignalNotification(sampleRate, m_settings.m_centerFrequency + ncoShift);
|
2017-09-04 18:00:33 -04:00
|
|
|
m_fileSink->handleMessage(*notif); // forward to file sink
|
2017-09-13 17:40:06 -04:00
|
|
|
m_deviceAPI->getDeviceEngineInputMessageQueue()->push(notif);
|
2017-04-17 20:12:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
qDebug() << "LimeSDRInput::applySettings: center freq: " << m_settings.m_centerFrequency << " Hz"
|
2017-04-18 07:33:33 -04:00
|
|
|
<< " device stream sample rate: " << m_settings.m_devSampleRate << "S/s"
|
2017-08-04 11:19:15 -04:00
|
|
|
<< " sample rate with soft decimation: " << m_settings.m_devSampleRate/(1<<m_settings.m_log2SoftDecim) << "S/s"
|
|
|
|
<< " m_gain: " << m_settings.m_gain
|
|
|
|
<< " m_lpfBW: " << m_settings.m_lpfBW
|
|
|
|
<< " m_lpfFIRBW: " << m_settings.m_lpfFIRBW
|
|
|
|
<< " m_lpfFIREnable: " << m_settings.m_lpfFIREnable
|
|
|
|
<< " m_ncoEnable: " << m_settings.m_ncoEnable
|
|
|
|
<< " m_ncoFrequency: " << m_settings.m_ncoFrequency
|
|
|
|
<< " m_antennaPath: " << m_settings.m_antennaPath;
|
2017-04-17 20:12:15 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|