From 00fb0f068d3f53ca5987d024674bb72783c3b77a Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 8 Aug 2020 17:49:52 +0200 Subject: [PATCH] Removed add/remove ancillary sink from device MIMO engine --- sdrbase/dsp/dspdevicemimoengine.cpp | 20 -------------------- sdrbase/dsp/dspdevicemimoengine.h | 3 --- 2 files changed, 23 deletions(-) diff --git a/sdrbase/dsp/dspdevicemimoengine.cpp b/sdrbase/dsp/dspdevicemimoengine.cpp index ad2c5da39..3c5465e95 100644 --- a/sdrbase/dsp/dspdevicemimoengine.cpp +++ b/sdrbase/dsp/dspdevicemimoengine.cpp @@ -205,26 +205,6 @@ void DSPDeviceMIMOEngine::removeMIMOChannel(MIMOChannel *channel) m_syncMessenger.sendWait(cmd); } -void DSPDeviceMIMOEngine::addAncillarySink(BasebandSampleSink* sink, int index) -{ - qDebug() << "DSPDeviceMIMOEngine::addSink: " - << sink->objectName().toStdString().c_str() - << " at: " - << index; - AddBasebandSampleSink cmd(sink, index); - m_syncMessenger.sendWait(cmd); -} - -void DSPDeviceMIMOEngine::removeAncillarySink(BasebandSampleSink* sink, int index) -{ - qDebug() << "DSPDeviceMIMOEngine::removeSink: " - << sink->objectName().toStdString().c_str() - << " at: " - << index; - RemoveBasebandSampleSink cmd(sink, index); - m_syncMessenger.sendWait(cmd); -} - void DSPDeviceMIMOEngine::addSpectrumSink(BasebandSampleSink* spectrumSink) { qDebug() << "DSPDeviceMIMOEngine::addSpectrumSink: " << spectrumSink->objectName().toStdString().c_str(); diff --git a/sdrbase/dsp/dspdevicemimoengine.h b/sdrbase/dsp/dspdevicemimoengine.h index 32e795779..dfc102281 100644 --- a/sdrbase/dsp/dspdevicemimoengine.h +++ b/sdrbase/dsp/dspdevicemimoengine.h @@ -236,9 +236,6 @@ public: void addMIMOChannel(MIMOChannel *channel); //!< Add a MIMO channel void removeMIMOChannel(MIMOChannel *channel); //!< Remove a MIMO channel - void addAncillarySink(BasebandSampleSink* sink, int index = 0); //!< Add an ancillary sink like a I/Q recorder - void removeAncillarySink(BasebandSampleSink* sink, int index = 0); //!< Remove an ancillary sample sink - void addSpectrumSink(BasebandSampleSink* spectrumSink); //!< Add a spectrum vis baseband sample sink void removeSpectrumSink(BasebandSampleSink* spectrumSink); //!< Add a spectrum vis baseband sample sink void setSpectrumSinkInput(bool sourceElseSink, int index);