mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-23 00:18:37 -05:00
Channel Analyzer: cleaned up old code
This commit is contained in:
parent
a59406feae
commit
c546e40191
@ -25,7 +25,6 @@
|
|||||||
#include "chanalyzer.h"
|
#include "chanalyzer.h"
|
||||||
|
|
||||||
MESSAGE_CLASS_DEFINITION(ChannelAnalyzer::MsgConfigureChannelAnalyzer, Message)
|
MESSAGE_CLASS_DEFINITION(ChannelAnalyzer::MsgConfigureChannelAnalyzer, Message)
|
||||||
MESSAGE_CLASS_DEFINITION(ChannelAnalyzer::MsgConfigureChannelAnalyzerOld, Message)
|
|
||||||
MESSAGE_CLASS_DEFINITION(ChannelAnalyzer::MsgConfigureChannelizer, Message)
|
MESSAGE_CLASS_DEFINITION(ChannelAnalyzer::MsgConfigureChannelizer, Message)
|
||||||
MESSAGE_CLASS_DEFINITION(ChannelAnalyzer::MsgReportChannelSampleRateChanged, Message)
|
MESSAGE_CLASS_DEFINITION(ChannelAnalyzer::MsgReportChannelSampleRateChanged, Message)
|
||||||
|
|
||||||
@ -75,20 +74,6 @@ ChannelAnalyzer::~ChannelAnalyzer()
|
|||||||
delete RRCFilter;
|
delete RRCFilter;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ChannelAnalyzer::configure(MessageQueue* messageQueue,
|
|
||||||
int channelSampleRate,
|
|
||||||
Real Bandwidth,
|
|
||||||
Real LowCutoff,
|
|
||||||
int spanLog2,
|
|
||||||
bool ssb,
|
|
||||||
bool pll,
|
|
||||||
bool fll,
|
|
||||||
unsigned int pllPskOrder)
|
|
||||||
{
|
|
||||||
Message* cmd = MsgConfigureChannelAnalyzerOld::create(channelSampleRate, Bandwidth, LowCutoff, spanLog2, ssb, pll, fll, pllPskOrder);
|
|
||||||
messageQueue->push(cmd);
|
|
||||||
}
|
|
||||||
|
|
||||||
void ChannelAnalyzer::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly)
|
void ChannelAnalyzer::feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly)
|
||||||
{
|
{
|
||||||
(void) positiveOnly;
|
(void) positiveOnly;
|
||||||
|
@ -65,71 +65,6 @@ public:
|
|||||||
{ }
|
{ }
|
||||||
};
|
};
|
||||||
|
|
||||||
class MsgConfigureChannelAnalyzerOld : public Message {
|
|
||||||
MESSAGE_CLASS_DECLARATION
|
|
||||||
|
|
||||||
public:
|
|
||||||
int getChannelSampleRate() const { return m_channelSampleRate; }
|
|
||||||
Real getBandwidth() const { return m_Bandwidth; }
|
|
||||||
Real getLoCutoff() const { return m_LowCutoff; }
|
|
||||||
int getSpanLog2() const { return m_spanLog2; }
|
|
||||||
bool getSSB() const { return m_ssb; }
|
|
||||||
bool getPLL() const { return m_pll; }
|
|
||||||
bool getFLL() const { return m_fll; }
|
|
||||||
unsigned int getPLLPSKOrder() const { return m_pllPskOrder; }
|
|
||||||
|
|
||||||
static MsgConfigureChannelAnalyzerOld* create(
|
|
||||||
int channelSampleRate,
|
|
||||||
Real Bandwidth,
|
|
||||||
Real LowCutoff,
|
|
||||||
int spanLog2,
|
|
||||||
bool ssb,
|
|
||||||
bool pll,
|
|
||||||
bool fll,
|
|
||||||
unsigned int pllPskOrder)
|
|
||||||
{
|
|
||||||
return new MsgConfigureChannelAnalyzerOld(
|
|
||||||
channelSampleRate,
|
|
||||||
Bandwidth,
|
|
||||||
LowCutoff,
|
|
||||||
spanLog2,
|
|
||||||
ssb,
|
|
||||||
pll,
|
|
||||||
fll,
|
|
||||||
pllPskOrder);
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
int m_channelSampleRate;
|
|
||||||
Real m_Bandwidth;
|
|
||||||
Real m_LowCutoff;
|
|
||||||
int m_spanLog2;
|
|
||||||
bool m_ssb;
|
|
||||||
bool m_pll;
|
|
||||||
bool m_fll;
|
|
||||||
unsigned int m_pllPskOrder;
|
|
||||||
|
|
||||||
MsgConfigureChannelAnalyzerOld(
|
|
||||||
int channelSampleRate,
|
|
||||||
Real Bandwidth,
|
|
||||||
Real LowCutoff,
|
|
||||||
int spanLog2,
|
|
||||||
bool ssb,
|
|
||||||
bool pll,
|
|
||||||
bool fll,
|
|
||||||
unsigned int pllPskOrder) :
|
|
||||||
Message(),
|
|
||||||
m_channelSampleRate(channelSampleRate),
|
|
||||||
m_Bandwidth(Bandwidth),
|
|
||||||
m_LowCutoff(LowCutoff),
|
|
||||||
m_spanLog2(spanLog2),
|
|
||||||
m_ssb(ssb),
|
|
||||||
m_pll(pll),
|
|
||||||
m_fll(fll),
|
|
||||||
m_pllPskOrder(pllPskOrder)
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
|
|
||||||
class MsgConfigureChannelizer : public Message {
|
class MsgConfigureChannelizer : public Message {
|
||||||
MESSAGE_CLASS_DECLARATION
|
MESSAGE_CLASS_DECLARATION
|
||||||
|
|
||||||
@ -175,15 +110,15 @@ public:
|
|||||||
virtual void destroy() { delete this; }
|
virtual void destroy() { delete this; }
|
||||||
void setSampleSink(BasebandSampleSink* sampleSink) { m_sampleSink = sampleSink; }
|
void setSampleSink(BasebandSampleSink* sampleSink) { m_sampleSink = sampleSink; }
|
||||||
|
|
||||||
void configure(MessageQueue* messageQueue,
|
// void configure(MessageQueue* messageQueue,
|
||||||
int channelSampleRate,
|
// int channelSampleRate,
|
||||||
Real Bandwidth,
|
// Real Bandwidth,
|
||||||
Real LowCutoff,
|
// Real LowCutoff,
|
||||||
int spanLog2,
|
// int spanLog2,
|
||||||
bool ssb,
|
// bool ssb,
|
||||||
bool pll,
|
// bool pll,
|
||||||
bool fll,
|
// bool fll,
|
||||||
unsigned int pllPskOrder);
|
// unsigned int pllPskOrder);
|
||||||
|
|
||||||
DownChannelizer *getChannelizer() { return m_channelizer; }
|
DownChannelizer *getChannelizer() { return m_channelizer; }
|
||||||
int getInputSampleRate() const { return m_inputSampleRate; }
|
int getInputSampleRate() const { return m_inputSampleRate; }
|
||||||
|
Loading…
Reference in New Issue
Block a user