mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
RxTx semantic move: renamed DSPDeviceEngine to DSPDeviceSourceEngine
This commit is contained in:
parent
dce0ace4ef
commit
e204efe2b8
@ -100,7 +100,7 @@ set(sdrbase_SOURCES
|
||||
sdrbase/dsp/ctcssdetector.cpp
|
||||
sdrbase/dsp/dspcommands.cpp
|
||||
sdrbase/dsp/dspengine.cpp
|
||||
sdrbase/dsp/dspdeviceengine.cpp
|
||||
sdrbase/dsp/dspdevicesourceengine.cpp
|
||||
sdrbase/dsp/fftengine.cpp
|
||||
sdrbase/dsp/fftfilt.cxx
|
||||
sdrbase/dsp/fftwindow.cpp
|
||||
@ -183,7 +183,7 @@ set(sdrbase_HEADERS
|
||||
sdrbase/dsp/decimators.h
|
||||
sdrbase/dsp/dspcommands.h
|
||||
sdrbase/dsp/dspengine.h
|
||||
sdrbase/dsp/dspdeviceengine.h
|
||||
sdrbase/dsp/dspdevicesourceengine.h
|
||||
sdrbase/dsp/dsptypes.h
|
||||
sdrbase/dsp/fftengine.h
|
||||
sdrbase/dsp/fftfilt.h
|
||||
|
@ -36,7 +36,7 @@ AirspyGui::AirspyGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_settings(),
|
||||
m_sampleSource(0),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1)
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
||||
@ -391,16 +391,16 @@ void AirspyGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -35,7 +35,7 @@ BladerfGui::BladerfGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_settings(),
|
||||
m_sampleSource(NULL),
|
||||
m_sampleRate(0),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1)
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
||||
@ -397,16 +397,16 @@ void BladerfGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -33,7 +33,7 @@ FCDProGui::FCDProGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_settings(),
|
||||
m_sampleSource(NULL),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1)
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
||||
@ -460,16 +460,16 @@ void FCDProGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -34,7 +34,7 @@ FCDProPlusGui::FCDProPlusGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_settings(),
|
||||
m_sampleSource(NULL),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1)
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
@ -220,16 +220,16 @@ void FCDProPlusGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -49,7 +49,7 @@ FileSourceGui::FileSourceGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_samplesCount(0),
|
||||
m_tickCount(0),
|
||||
m_enableNavTime(false),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1)
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
||||
@ -239,16 +239,16 @@ void FileSourceGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -36,7 +36,7 @@ HackRFGui::HackRFGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_settings(),
|
||||
m_sampleSource(NULL),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1)
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
||||
@ -374,16 +374,16 @@ void HackRFGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -34,7 +34,7 @@ RTLSDRGui::RTLSDRGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_settings(),
|
||||
m_sampleSource(0),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1)
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::ReverseGold));
|
||||
@ -357,16 +357,16 @@ void RTLSDRGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -47,7 +47,7 @@ SDRdaemonGui::SDRdaemonGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_sampleSource(NULL),
|
||||
m_acquisition(false),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1),
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1),
|
||||
m_sampleRate(0),
|
||||
m_sampleRateStream(0),
|
||||
m_centerFrequency(0),
|
||||
@ -705,16 +705,16 @@ void SDRdaemonGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -47,7 +47,7 @@ SDRdaemonFECGui::SDRdaemonFECGui(DeviceAPI *deviceAPI, QWidget* parent) :
|
||||
m_deviceAPI(deviceAPI),
|
||||
m_sampleSource(NULL),
|
||||
m_acquisition(false),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1),
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1),
|
||||
m_sampleRate(0),
|
||||
m_centerFrequency(0),
|
||||
m_framesDecodingStatus(0),
|
||||
@ -659,16 +659,16 @@ void SDRdaemonFECGui::updateStatus()
|
||||
{
|
||||
switch(state)
|
||||
{
|
||||
case DSPDeviceEngine::StNotStarted:
|
||||
case DSPDeviceSourceEngine::StNotStarted:
|
||||
ui->startStop->setStyleSheet("QToolButton { background:rgb(79,79,79); }");
|
||||
break;
|
||||
case DSPDeviceEngine::StIdle:
|
||||
case DSPDeviceSourceEngine::StIdle:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : blue; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StRunning:
|
||||
case DSPDeviceSourceEngine::StRunning:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : green; }");
|
||||
break;
|
||||
case DSPDeviceEngine::StError:
|
||||
case DSPDeviceSourceEngine::StError:
|
||||
ui->startStop->setStyleSheet("QToolButton { background-color : red; }");
|
||||
QMessageBox::information(this, tr("Message"), m_deviceAPI->errorMessage());
|
||||
break;
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
DeviceAPI::DeviceAPI(MainWindow *mainWindow,
|
||||
int deviceTabIndex,
|
||||
DSPDeviceEngine *deviceEngine,
|
||||
DSPDeviceSourceEngine *deviceEngine,
|
||||
GLSpectrum *glSpectrum,
|
||||
ChannelWindow *channelWindow) :
|
||||
m_mainWindow(mainWindow),
|
||||
@ -82,7 +82,7 @@ void DeviceAPI::stopAcquisition()
|
||||
m_deviceEngine->stopAcquistion();
|
||||
}
|
||||
|
||||
DSPDeviceEngine::State DeviceAPI::state() const
|
||||
DSPDeviceSourceEngine::State DeviceAPI::state() const
|
||||
{
|
||||
return m_deviceEngine->state();
|
||||
}
|
||||
|
@ -20,12 +20,12 @@
|
||||
#include <QObject>
|
||||
#include <QString>
|
||||
|
||||
#include "../dsp/dspdevicesourceengine.h"
|
||||
|
||||
#include "util/export.h"
|
||||
#include "dsp/dspdeviceengine.h"
|
||||
|
||||
class MainWindow;
|
||||
class DSPDeviceEngine;
|
||||
class DSPDeviceSourceEngine;
|
||||
class GLSpectrum;
|
||||
class ChannelWindow;
|
||||
class BasebandSampleSink;
|
||||
@ -51,7 +51,7 @@ public:
|
||||
bool initAcquisition(); //!< Initialize device engine acquisition sequence
|
||||
bool startAcquisition(); //!< Start device engine acquisition sequence
|
||||
void stopAcquisition(); //!< Stop device engine acquisition sequence
|
||||
DSPDeviceEngine::State state() const; //!< device engine state
|
||||
DSPDeviceSourceEngine::State state() const; //!< device engine state
|
||||
QString errorMessage(); //!< Return the current device engine error message
|
||||
uint getDeviceUID() const; //!< Return the current device engine unique ID
|
||||
MessageQueue *getDeviceInputMessageQueue();
|
||||
@ -105,7 +105,7 @@ protected:
|
||||
|
||||
DeviceAPI(MainWindow *mainWindow,
|
||||
int deviceTabIndex,
|
||||
DSPDeviceEngine *deviceEngine,
|
||||
DSPDeviceSourceEngine *deviceEngine,
|
||||
GLSpectrum *glSpectrum,
|
||||
ChannelWindow *channelWindow);
|
||||
~DeviceAPI();
|
||||
@ -114,7 +114,7 @@ protected:
|
||||
|
||||
MainWindow *m_mainWindow;
|
||||
int m_deviceTabIndex;
|
||||
DSPDeviceEngine *m_deviceEngine;
|
||||
DSPDeviceSourceEngine *m_deviceEngine;
|
||||
GLSpectrum *m_spectrum;
|
||||
ChannelWindow *m_channelWindow;
|
||||
|
||||
|
@ -15,17 +15,18 @@
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "dspdevicesourceengine.h"
|
||||
|
||||
#include <dsp/basebandsamplesink.h>
|
||||
#include <dsp/devicesamplesource.h>
|
||||
#include <dsp/downchannelizer.h>
|
||||
#include <stdio.h>
|
||||
#include <QDebug>
|
||||
#include "dsp/dspdeviceengine.h"
|
||||
#include "dsp/samplefifo.h"
|
||||
#include "dsp/dspcommands.h"
|
||||
#include "threadedbasebandsamplesink.h"
|
||||
|
||||
DSPDeviceEngine::DSPDeviceEngine(uint uid, QObject* parent) :
|
||||
DSPDeviceSourceEngine::DSPDeviceSourceEngine(uint uid, QObject* parent) :
|
||||
m_uid(uid),
|
||||
QThread(parent),
|
||||
m_state(StNotStarted),
|
||||
@ -48,12 +49,12 @@ DSPDeviceEngine::DSPDeviceEngine(uint uid, QObject* parent) :
|
||||
moveToThread(this);
|
||||
}
|
||||
|
||||
DSPDeviceEngine::~DSPDeviceEngine()
|
||||
DSPDeviceSourceEngine::~DSPDeviceSourceEngine()
|
||||
{
|
||||
wait();
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::run()
|
||||
void DSPDeviceSourceEngine::run()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::run";
|
||||
|
||||
@ -63,20 +64,20 @@ void DSPDeviceEngine::run()
|
||||
exec();
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::start()
|
||||
void DSPDeviceSourceEngine::start()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::start";
|
||||
QThread::start();
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::stop()
|
||||
void DSPDeviceSourceEngine::stop()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::stop";
|
||||
DSPExit cmd;
|
||||
m_syncMessenger.sendWait(cmd);
|
||||
}
|
||||
|
||||
bool DSPDeviceEngine::initAcquisition()
|
||||
bool DSPDeviceSourceEngine::initAcquisition()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::initAcquisition";
|
||||
DSPAcquisitionInit cmd;
|
||||
@ -84,7 +85,7 @@ bool DSPDeviceEngine::initAcquisition()
|
||||
return m_syncMessenger.sendWait(cmd) == StReady;
|
||||
}
|
||||
|
||||
bool DSPDeviceEngine::startAcquisition()
|
||||
bool DSPDeviceSourceEngine::startAcquisition()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::startAcquisition";
|
||||
DSPAcquisitionStart cmd;
|
||||
@ -92,7 +93,7 @@ bool DSPDeviceEngine::startAcquisition()
|
||||
return m_syncMessenger.sendWait(cmd) == StRunning;
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::stopAcquistion()
|
||||
void DSPDeviceSourceEngine::stopAcquistion()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::stopAcquistion";
|
||||
DSPAcquisitionStop cmd;
|
||||
@ -105,55 +106,55 @@ void DSPDeviceEngine::stopAcquistion()
|
||||
}
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::setSource(DeviceSampleSource* source)
|
||||
void DSPDeviceSourceEngine::setSource(DeviceSampleSource* source)
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::setSource";
|
||||
DSPSetSource cmd(source);
|
||||
m_syncMessenger.sendWait(cmd);
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::setSourceSequence(int sequence)
|
||||
void DSPDeviceSourceEngine::setSourceSequence(int sequence)
|
||||
{
|
||||
qDebug("DSPDeviceEngine::setSourceSequence: seq: %d", sequence);
|
||||
m_sampleSourceSequence = sequence;
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::addSink(BasebandSampleSink* sink)
|
||||
void DSPDeviceSourceEngine::addSink(BasebandSampleSink* sink)
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::addSink: " << sink->objectName().toStdString().c_str();
|
||||
DSPAddSink cmd(sink);
|
||||
m_syncMessenger.sendWait(cmd);
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::removeSink(BasebandSampleSink* sink)
|
||||
void DSPDeviceSourceEngine::removeSink(BasebandSampleSink* sink)
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::removeSink: " << sink->objectName().toStdString().c_str();
|
||||
DSPRemoveSink cmd(sink);
|
||||
m_syncMessenger.sendWait(cmd);
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::addThreadedSink(ThreadedBasebandSampleSink* sink)
|
||||
void DSPDeviceSourceEngine::addThreadedSink(ThreadedBasebandSampleSink* sink)
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::addThreadedSink: " << sink->objectName().toStdString().c_str();
|
||||
DSPAddThreadedSampleSink cmd(sink);
|
||||
m_syncMessenger.sendWait(cmd);
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::removeThreadedSink(ThreadedBasebandSampleSink* sink)
|
||||
void DSPDeviceSourceEngine::removeThreadedSink(ThreadedBasebandSampleSink* sink)
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::removeThreadedSink: " << sink->objectName().toStdString().c_str();
|
||||
DSPRemoveThreadedSampleSink cmd(sink);
|
||||
m_syncMessenger.sendWait(cmd);
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::configureCorrections(bool dcOffsetCorrection, bool iqImbalanceCorrection)
|
||||
void DSPDeviceSourceEngine::configureCorrections(bool dcOffsetCorrection, bool iqImbalanceCorrection)
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::configureCorrections";
|
||||
DSPConfigureCorrection* cmd = new DSPConfigureCorrection(dcOffsetCorrection, iqImbalanceCorrection);
|
||||
m_inputMessageQueue.push(cmd);
|
||||
}
|
||||
|
||||
QString DSPDeviceEngine::errorMessage()
|
||||
QString DSPDeviceSourceEngine::errorMessage()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::errorMessage";
|
||||
DSPGetErrorMessage cmd;
|
||||
@ -161,7 +162,7 @@ QString DSPDeviceEngine::errorMessage()
|
||||
return cmd.getErrorMessage();
|
||||
}
|
||||
|
||||
QString DSPDeviceEngine::sourceDeviceDescription()
|
||||
QString DSPDeviceSourceEngine::sourceDeviceDescription()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::sourceDeviceDescription";
|
||||
DSPGetSourceDeviceDescription cmd;
|
||||
@ -169,7 +170,7 @@ QString DSPDeviceEngine::sourceDeviceDescription()
|
||||
return cmd.getDeviceDescription();
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::dcOffset(SampleVector::iterator begin, SampleVector::iterator end)
|
||||
void DSPDeviceSourceEngine::dcOffset(SampleVector::iterator begin, SampleVector::iterator end)
|
||||
{
|
||||
double count;
|
||||
int io = 0;
|
||||
@ -190,7 +191,7 @@ void DSPDeviceEngine::dcOffset(SampleVector::iterator begin, SampleVector::itera
|
||||
m_qOffset = (15.0 * m_qOffset + (double)qo / count) / 16.0;
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::imbalance(SampleVector::iterator begin, SampleVector::iterator end)
|
||||
void DSPDeviceSourceEngine::imbalance(SampleVector::iterator begin, SampleVector::iterator end)
|
||||
{
|
||||
int iMin = 0;
|
||||
int iMax = 0;
|
||||
@ -239,7 +240,7 @@ void DSPDeviceEngine::imbalance(SampleVector::iterator begin, SampleVector::iter
|
||||
}
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::work()
|
||||
void DSPDeviceSourceEngine::work()
|
||||
{
|
||||
SampleFifo* sampleFifo = m_sampleSource->getSampleFifo();
|
||||
std::size_t samplesDone = 0;
|
||||
@ -318,7 +319,7 @@ void DSPDeviceEngine::work()
|
||||
// ^ |
|
||||
// +-----------------------+
|
||||
|
||||
DSPDeviceEngine::State DSPDeviceEngine::gotoIdle()
|
||||
DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoIdle()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::gotoIdle";
|
||||
|
||||
@ -354,7 +355,7 @@ DSPDeviceEngine::State DSPDeviceEngine::gotoIdle()
|
||||
return StIdle;
|
||||
}
|
||||
|
||||
DSPDeviceEngine::State DSPDeviceEngine::gotoInit()
|
||||
DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoInit()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::gotoInit";
|
||||
|
||||
@ -415,7 +416,7 @@ DSPDeviceEngine::State DSPDeviceEngine::gotoInit()
|
||||
return StReady;
|
||||
}
|
||||
|
||||
DSPDeviceEngine::State DSPDeviceEngine::gotoRunning()
|
||||
DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoRunning()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::gotoRunning";
|
||||
|
||||
@ -465,7 +466,7 @@ DSPDeviceEngine::State DSPDeviceEngine::gotoRunning()
|
||||
return StRunning;
|
||||
}
|
||||
|
||||
DSPDeviceEngine::State DSPDeviceEngine::gotoError(const QString& errorMessage)
|
||||
DSPDeviceSourceEngine::State DSPDeviceSourceEngine::gotoError(const QString& errorMessage)
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::gotoError";
|
||||
|
||||
@ -475,7 +476,7 @@ DSPDeviceEngine::State DSPDeviceEngine::gotoError(const QString& errorMessage)
|
||||
return StError;
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::handleSetSource(DeviceSampleSource* source)
|
||||
void DSPDeviceSourceEngine::handleSetSource(DeviceSampleSource* source)
|
||||
{
|
||||
gotoIdle();
|
||||
|
||||
@ -497,7 +498,7 @@ void DSPDeviceEngine::handleSetSource(DeviceSampleSource* source)
|
||||
}
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::handleData()
|
||||
void DSPDeviceSourceEngine::handleData()
|
||||
{
|
||||
if(m_state == StRunning)
|
||||
{
|
||||
@ -505,7 +506,7 @@ void DSPDeviceEngine::handleData()
|
||||
}
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::handleSynchronousMessages()
|
||||
void DSPDeviceSourceEngine::handleSynchronousMessages()
|
||||
{
|
||||
Message *message = m_syncMessenger.getMessage();
|
||||
qDebug() << "DSPDeviceEngine::handleSynchronousMessages: " << message->getIdentifier();
|
||||
@ -576,7 +577,7 @@ void DSPDeviceEngine::handleSynchronousMessages()
|
||||
m_syncMessenger.done(m_state);
|
||||
}
|
||||
|
||||
void DSPDeviceEngine::handleInputMessages()
|
||||
void DSPDeviceSourceEngine::handleInputMessages()
|
||||
{
|
||||
qDebug() << "DSPDeviceEngine::handleInputMessages";
|
||||
|
@ -33,7 +33,7 @@ class DeviceSampleSource;
|
||||
class BasebandSampleSink;
|
||||
class ThreadedBasebandSampleSink;
|
||||
|
||||
class SDRANGEL_API DSPDeviceEngine : public QThread {
|
||||
class SDRANGEL_API DSPDeviceSourceEngine : public QThread {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
@ -45,8 +45,8 @@ public:
|
||||
StError //!< engine is in error
|
||||
};
|
||||
|
||||
DSPDeviceEngine(uint uid, QObject* parent = NULL);
|
||||
~DSPDeviceEngine();
|
||||
DSPDeviceSourceEngine(uint uid, QObject* parent = NULL);
|
||||
~DSPDeviceSourceEngine();
|
||||
|
||||
uint getUID() const { return m_uid; }
|
||||
|
@ -28,7 +28,7 @@ DSPEngine::DSPEngine() :
|
||||
|
||||
DSPEngine::~DSPEngine()
|
||||
{
|
||||
std::vector<DSPDeviceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
std::vector<DSPDeviceSourceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
|
||||
while (it != m_deviceEngines.end())
|
||||
{
|
||||
@ -43,9 +43,9 @@ DSPEngine *DSPEngine::instance()
|
||||
return dspEngine;
|
||||
}
|
||||
|
||||
DSPDeviceEngine *DSPEngine::addDeviceEngine()
|
||||
DSPDeviceSourceEngine *DSPEngine::addDeviceEngine()
|
||||
{
|
||||
m_deviceEngines.push_back(new DSPDeviceEngine(m_deviceEnginesUIDSequence));
|
||||
m_deviceEngines.push_back(new DSPDeviceSourceEngine(m_deviceEnginesUIDSequence));
|
||||
m_deviceEnginesUIDSequence++;
|
||||
return m_deviceEngines.back();
|
||||
}
|
||||
@ -54,7 +54,7 @@ void DSPEngine::removeLastDeviceEngine()
|
||||
{
|
||||
if (m_deviceEngines.size() > 0)
|
||||
{
|
||||
DSPDeviceEngine *lastDeviceEngine = m_deviceEngines.back();
|
||||
DSPDeviceSourceEngine *lastDeviceEngine = m_deviceEngines.back();
|
||||
delete lastDeviceEngine;
|
||||
m_deviceEngines.pop_back();
|
||||
m_deviceEnginesUIDSequence--;
|
||||
@ -63,7 +63,7 @@ void DSPEngine::removeLastDeviceEngine()
|
||||
|
||||
void DSPEngine::stopAllAcquisitions()
|
||||
{
|
||||
std::vector<DSPDeviceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
std::vector<DSPDeviceSourceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
|
||||
while (it != m_deviceEngines.end())
|
||||
{
|
||||
@ -75,7 +75,7 @@ void DSPEngine::stopAllAcquisitions()
|
||||
|
||||
void DSPEngine::stopAllDeviceEngines()
|
||||
{
|
||||
std::vector<DSPDeviceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
std::vector<DSPDeviceSourceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
|
||||
while (it != m_deviceEngines.end())
|
||||
{
|
||||
@ -118,9 +118,9 @@ void DSPEngine::removeAudioSink(AudioFifo* audioFifo)
|
||||
m_audioOutput.removeFifo(audioFifo);
|
||||
}
|
||||
|
||||
DSPDeviceEngine *DSPEngine::getDeviceEngineByUID(uint uid)
|
||||
DSPDeviceSourceEngine *DSPEngine::getDeviceEngineByUID(uint uid)
|
||||
{
|
||||
std::vector<DSPDeviceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
std::vector<DSPDeviceSourceEngine*>::iterator it = m_deviceEngines.begin();
|
||||
|
||||
while (it != m_deviceEngines.end())
|
||||
{
|
||||
|
@ -20,14 +20,14 @@
|
||||
|
||||
#include <QObject>
|
||||
#include <vector>
|
||||
#include "dsp/dspdeviceengine.h"
|
||||
#include "audio/audiooutput.h"
|
||||
#include "dspdevicesourceengine.h"
|
||||
#include "util/export.h"
|
||||
#ifdef DSD_USE_SERIALDV
|
||||
#include "dsp/dvserialengine.h"
|
||||
#endif
|
||||
|
||||
class DSPDeviceEngine;
|
||||
class DSPDeviceSourceEngine;
|
||||
class ThreadedBasebandSampleSink;
|
||||
|
||||
class SDRANGEL_API DSPEngine : public QObject {
|
||||
@ -40,7 +40,7 @@ public:
|
||||
|
||||
uint getAudioSampleRate() const { return m_audioSampleRate; }
|
||||
|
||||
DSPDeviceEngine *addDeviceEngine();
|
||||
DSPDeviceSourceEngine *addDeviceEngine();
|
||||
void removeLastDeviceEngine();
|
||||
void stopAllAcquisitions();
|
||||
void stopAllDeviceEngines();
|
||||
@ -50,8 +50,8 @@ public:
|
||||
void startAudioImmediate();
|
||||
void stopAudioImmediate();
|
||||
|
||||
DSPDeviceEngine *getDeviceEngineByIndex(uint deviceIndex) { return m_deviceEngines[deviceIndex]; }
|
||||
DSPDeviceEngine *getDeviceEngineByUID(uint uid);
|
||||
DSPDeviceSourceEngine *getDeviceEngineByIndex(uint deviceIndex) { return m_deviceEngines[deviceIndex]; }
|
||||
DSPDeviceSourceEngine *getDeviceEngineByUID(uint uid);
|
||||
|
||||
void addAudioSink(AudioFifo* audioFifo); //!< Add the audio sink
|
||||
void removeAudioSink(AudioFifo* audioFifo); //!< Remove the audio sink
|
||||
@ -84,7 +84,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
std::vector<DSPDeviceEngine*> m_deviceEngines;
|
||||
std::vector<DSPDeviceSourceEngine*> m_deviceEngines;
|
||||
uint m_deviceEnginesUIDSequence;
|
||||
AudioOutput m_audioOutput;
|
||||
uint m_audioSampleRate;
|
||||
|
@ -60,7 +60,7 @@ MainWindow::MainWindow(QWidget* parent) :
|
||||
m_masterTabIndex(0),
|
||||
m_settings(),
|
||||
m_dspEngine(DSPEngine::instance()),
|
||||
m_lastEngineState((DSPDeviceEngine::State)-1),
|
||||
m_lastEngineState((DSPDeviceSourceEngine::State)-1),
|
||||
m_inputGUI(0),
|
||||
m_sampleRate(0),
|
||||
m_centerFrequency(0),
|
||||
@ -172,7 +172,7 @@ MainWindow::~MainWindow()
|
||||
|
||||
void MainWindow::addDevice()
|
||||
{
|
||||
DSPDeviceEngine *dspDeviceEngine = m_dspEngine->addDeviceEngine();
|
||||
DSPDeviceSourceEngine *dspDeviceEngine = m_dspEngine->addDeviceEngine();
|
||||
dspDeviceEngine->start();
|
||||
|
||||
uint dspDeviceEngineUID = dspDeviceEngine->getUID();
|
||||
@ -208,7 +208,7 @@ void MainWindow::addDevice()
|
||||
|
||||
void MainWindow::removeLastDevice()
|
||||
{
|
||||
DSPDeviceEngine *lastDeviceEngine = m_deviceUIs.back()->m_deviceEngine;
|
||||
DSPDeviceSourceEngine *lastDeviceEngine = m_deviceUIs.back()->m_deviceEngine;
|
||||
lastDeviceEngine->stopAcquistion();
|
||||
lastDeviceEngine->removeSink(m_deviceUIs.back()->m_spectrumVis);
|
||||
|
||||
|
@ -33,7 +33,7 @@ class SamplingDeviceControl;
|
||||
|
||||
class AudioDeviceInfo;
|
||||
class DSPEngine;
|
||||
class DSPDeviceEngine;
|
||||
class DSPDeviceSourceEngine;
|
||||
class Indicator;
|
||||
class SpectrumVis;
|
||||
class GLSpectrum;
|
||||
@ -63,7 +63,7 @@ public:
|
||||
GLSpectrumGUI *m_spectrumGUI;
|
||||
ChannelWindow *m_channelWindow;
|
||||
SamplingDeviceControl *m_samplingDeviceControl;
|
||||
DSPDeviceEngine *m_deviceEngine;
|
||||
DSPDeviceSourceEngine *m_deviceEngine;
|
||||
DeviceAPI *m_deviceAPI;
|
||||
QByteArray m_mainWindowState;
|
||||
|
||||
|
@ -9,10 +9,10 @@
|
||||
#include "settings/preset.h"
|
||||
#include "mainwindow.h"
|
||||
#include "gui/glspectrum.h"
|
||||
#include "dsp/dspdeviceengine.h"
|
||||
#include "util/message.h"
|
||||
|
||||
#include <QDebug>
|
||||
#include "../dsp/dspdevicesourceengine.h"
|
||||
|
||||
const QString PluginManager::m_sdrDaemonDeviceTypeID = "sdrangel.samplesource.sdrdaemon";
|
||||
const QString PluginManager::m_sdrDaemonFECDeviceTypeID = "sdrangel.samplesource.sdrdaemonfec";
|
||||
|
@ -13,7 +13,7 @@ class Preset;
|
||||
class MainWindow;
|
||||
class Message;
|
||||
class MessageQueue;
|
||||
class DSPDeviceEngine;
|
||||
class DSPDeviceSourceEngine;
|
||||
class DeviceAPI;
|
||||
|
||||
class SDRANGEL_API PluginManager : public QObject {
|
||||
|
@ -38,7 +38,7 @@ SOURCES += mainwindow.cpp\
|
||||
dsp/ctcssdetector.cpp\
|
||||
dsp/dspcommands.cpp\
|
||||
dsp/dspengine.cpp\
|
||||
dsp/dspdeviceengine.cpp\
|
||||
dsp/dspdevicesourceengine.cpp\
|
||||
dsp/dvserialengine.cpp\
|
||||
dsp/dvserialworker.cpp\
|
||||
dsp/fftengine.cpp\
|
||||
@ -112,7 +112,7 @@ HEADERS += mainwindow.h\
|
||||
dsp/decimators.h\
|
||||
dsp/dspcommands.h\
|
||||
dsp/dspengine.h\
|
||||
dsp/dspdeviceengine.h\
|
||||
dsp/dspdevicesourceengine.h\
|
||||
dsp/dvserialengine.h\
|
||||
dsp/dvserialworker.h\
|
||||
dsp/dsptypes.h\
|
||||
|
Loading…
Reference in New Issue
Block a user