2017-11-08 08:23:49 -05: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef INCLUDE_CHANALYZERNG_H
|
|
|
|
#define INCLUDE_CHANALYZERNG_H
|
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-11-18 21:38:07 -05:00
|
|
|
#include "dsp/basebandsamplesink.h"
|
|
|
|
#include "channel/channelsinkapi.h"
|
2017-11-08 08:23:49 -05:00
|
|
|
#include "dsp/interpolator.h"
|
|
|
|
#include "dsp/ncof.h"
|
|
|
|
#include "dsp/fftfilt.h"
|
2018-05-13 16:30:50 -04:00
|
|
|
#include "dsp/phaselockcomplex.h"
|
2017-11-08 08:23:49 -05:00
|
|
|
#include "audio/audiofifo.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
|
|
|
#define ssbFftLen 1024
|
|
|
|
|
|
|
|
class DeviceSourceAPI;
|
|
|
|
class ThreadedBasebandSampleSink;
|
|
|
|
class DownChannelizer;
|
|
|
|
|
2017-11-18 21:38:07 -05:00
|
|
|
class ChannelAnalyzerNG : public BasebandSampleSink, public ChannelSinkAPI {
|
2017-11-08 08:23:49 -05:00
|
|
|
public:
|
|
|
|
class MsgConfigureChannelAnalyzer : 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; }
|
2018-05-12 00:01:54 -04:00
|
|
|
bool getPLL() const { return m_pll; }
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
static MsgConfigureChannelAnalyzer* create(
|
|
|
|
int channelSampleRate,
|
|
|
|
Real Bandwidth,
|
|
|
|
Real LowCutoff,
|
|
|
|
int spanLog2,
|
2018-05-12 00:01:54 -04:00
|
|
|
bool ssb,
|
|
|
|
bool pll)
|
2017-11-08 08:23:49 -05:00
|
|
|
{
|
|
|
|
return new MsgConfigureChannelAnalyzer(
|
|
|
|
channelSampleRate,
|
|
|
|
Bandwidth,
|
|
|
|
LowCutoff,
|
|
|
|
spanLog2,
|
2018-05-12 00:01:54 -04:00
|
|
|
ssb,
|
|
|
|
pll);
|
2017-11-08 08:23:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_channelSampleRate;
|
|
|
|
Real m_Bandwidth;
|
|
|
|
Real m_LowCutoff;
|
|
|
|
int m_spanLog2;
|
|
|
|
bool m_ssb;
|
2018-05-12 00:01:54 -04:00
|
|
|
bool m_pll;
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
MsgConfigureChannelAnalyzer(
|
|
|
|
int channelSampleRate,
|
|
|
|
Real Bandwidth,
|
|
|
|
Real LowCutoff,
|
|
|
|
int spanLog2,
|
2018-05-12 00:01:54 -04:00
|
|
|
bool ssb,
|
|
|
|
bool pll) :
|
2017-11-08 08:23:49 -05:00
|
|
|
Message(),
|
|
|
|
m_channelSampleRate(channelSampleRate),
|
|
|
|
m_Bandwidth(Bandwidth),
|
|
|
|
m_LowCutoff(LowCutoff),
|
|
|
|
m_spanLog2(spanLog2),
|
2018-05-12 00:01:54 -04:00
|
|
|
m_ssb(ssb),
|
|
|
|
m_pll(pll)
|
2017-11-08 08:23:49 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgConfigureChannelizer : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getSampleRate() const { return m_sampleRate; }
|
|
|
|
int getCenterFrequency() const { return m_centerFrequency; }
|
|
|
|
|
|
|
|
static MsgConfigureChannelizer* create(int sampleRate, int centerFrequency)
|
|
|
|
{
|
|
|
|
return new MsgConfigureChannelizer(sampleRate, centerFrequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_sampleRate;
|
|
|
|
int m_centerFrequency;
|
|
|
|
|
|
|
|
MsgConfigureChannelizer(int sampleRate, int centerFrequency) :
|
|
|
|
Message(),
|
|
|
|
m_sampleRate(sampleRate),
|
|
|
|
m_centerFrequency(centerFrequency)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportChannelSampleRateChanged : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static MsgReportChannelSampleRateChanged* create()
|
|
|
|
{
|
|
|
|
return new MsgReportChannelSampleRateChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
MsgReportChannelSampleRateChanged() :
|
|
|
|
Message()
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
ChannelAnalyzerNG(DeviceSourceAPI *deviceAPI);
|
|
|
|
virtual ~ChannelAnalyzerNG();
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual void destroy() { delete this; }
|
2017-11-08 08:23:49 -05:00
|
|
|
void setSampleSink(BasebandSampleSink* sampleSink) { m_sampleSink = sampleSink; }
|
|
|
|
|
|
|
|
void configure(MessageQueue* messageQueue,
|
|
|
|
int channelSampleRate,
|
|
|
|
Real Bandwidth,
|
|
|
|
Real LowCutoff,
|
|
|
|
int spanLog2,
|
2018-05-12 00:01:54 -04:00
|
|
|
bool ssb,
|
|
|
|
bool pll);
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
DownChannelizer *getChannelizer() { return m_channelizer; }
|
|
|
|
int getInputSampleRate() const { return m_running.m_inputSampleRate; }
|
|
|
|
int getChannelSampleRate() const { return m_running.m_channelSampleRate; }
|
|
|
|
double getMagSq() const { return m_magsq; }
|
2018-05-12 00:01:54 -04:00
|
|
|
bool isPllLocked() const { return m_running.m_pll && m_pll.locked(); }
|
2018-05-13 16:30:50 -04:00
|
|
|
Real getPllFrequency() const { return m_pll.getFrequency(); }
|
|
|
|
Real getPllDeltaPhase() const { return m_pll.getDeltaPhi(); }
|
|
|
|
Real getPllPhase() const { return m_pll.getPhiHat(); }
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool positiveOnly);
|
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
|
|
|
|
2017-11-18 21:38:07 -05:00
|
|
|
virtual void getIdentifier(QString& id) { id = objectName(); }
|
|
|
|
virtual void getTitle(QString& title) { title = objectName(); }
|
2017-12-17 17:15:42 -05:00
|
|
|
virtual qint64 getCenterFrequency() const { return m_running.m_frequency; }
|
|
|
|
|
|
|
|
virtual QByteArray serialize() const { return QByteArray(); }
|
|
|
|
virtual bool deserialize(const QByteArray& data __attribute__((unused))) { return false; }
|
2017-11-18 21:38:07 -05:00
|
|
|
|
2017-11-22 19:19:32 -05:00
|
|
|
static const QString m_channelIdURI;
|
|
|
|
static const QString m_channelId;
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
struct Config
|
|
|
|
{
|
|
|
|
int m_frequency;
|
|
|
|
int m_inputSampleRate;
|
|
|
|
int m_channelSampleRate;
|
|
|
|
Real m_Bandwidth;
|
|
|
|
Real m_LowCutoff;
|
|
|
|
int m_spanLog2;
|
|
|
|
bool m_ssb;
|
2018-05-12 00:01:54 -04:00
|
|
|
bool m_pll;
|
2017-11-08 08:23:49 -05:00
|
|
|
|
|
|
|
Config() :
|
|
|
|
m_frequency(0),
|
|
|
|
m_inputSampleRate(96000),
|
|
|
|
m_channelSampleRate(96000),
|
|
|
|
m_Bandwidth(5000),
|
|
|
|
m_LowCutoff(300),
|
|
|
|
m_spanLog2(3),
|
2018-05-12 00:01:54 -04:00
|
|
|
m_ssb(false),
|
|
|
|
m_pll(false)
|
2017-11-08 08:23:49 -05:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
Config m_config;
|
|
|
|
Config m_running;
|
|
|
|
|
|
|
|
DeviceSourceAPI *m_deviceAPI;
|
|
|
|
ThreadedBasebandSampleSink* m_threadedChannelizer;
|
|
|
|
DownChannelizer* m_channelizer;
|
|
|
|
|
|
|
|
int m_undersampleCount;
|
|
|
|
fftfilt::cmplx m_sum;
|
|
|
|
bool m_usb;
|
|
|
|
double m_magsq;
|
|
|
|
bool m_useInterpolator;
|
|
|
|
|
|
|
|
NCOF m_nco;
|
2018-05-13 16:30:50 -04:00
|
|
|
PhaseLockComplex m_pll;
|
2017-11-08 08:23:49 -05:00
|
|
|
Interpolator m_interpolator;
|
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
|
|
|
|
|
|
|
fftfilt* SSBFilter;
|
|
|
|
fftfilt* DSBFilter;
|
|
|
|
|
|
|
|
BasebandSampleSink* m_sampleSink;
|
|
|
|
SampleVector m_sampleBuffer;
|
|
|
|
QMutex m_settingsMutex;
|
|
|
|
|
|
|
|
void apply(bool force = false);
|
|
|
|
|
|
|
|
void processOneSample(Complex& c, fftfilt::cmplx *sideband)
|
|
|
|
{
|
|
|
|
int n_out;
|
|
|
|
int decim = 1<<m_running.m_spanLog2;
|
|
|
|
|
|
|
|
if (m_running.m_ssb)
|
|
|
|
{
|
|
|
|
n_out = SSBFilter->runSSB(c, &sideband, m_usb);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
n_out = DSBFilter->runDSB(c, &sideband);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < n_out; i++)
|
|
|
|
{
|
|
|
|
// Downsample by 2^(m_scaleLog2 - 1) for SSB band spectrum display
|
|
|
|
// smart decimation with bit gain using float arithmetic (23 bits significand)
|
|
|
|
|
|
|
|
m_sum += sideband[i];
|
|
|
|
|
|
|
|
if (!(m_undersampleCount++ & (decim - 1))) // counter LSB bit mask for decimation by 2^(m_scaleLog2 - 1)
|
|
|
|
{
|
|
|
|
m_sum /= decim;
|
2018-01-22 02:46:05 -05:00
|
|
|
Real re = m_sum.real() / SDR_RX_SCALED;
|
|
|
|
Real im = m_sum.imag() / SDR_RX_SCALED;
|
2018-01-21 04:57:04 -05:00
|
|
|
m_magsq = re*re + im*im;
|
2017-11-08 08:23:49 -05:00
|
|
|
|
2018-05-12 00:01:54 -04:00
|
|
|
if (m_running.m_pll)
|
|
|
|
{
|
2018-05-13 16:30:50 -04:00
|
|
|
m_pll.feed(re, im);
|
2018-05-12 00:01:54 -04:00
|
|
|
|
2018-05-13 16:30:50 -04:00
|
|
|
// Use -fPLL to mix (exchange PLL real and image in the complex multiplication)
|
|
|
|
Real mixI = m_sum.real() * m_pll.getImag() - m_sum.imag() * m_pll.getReal();
|
|
|
|
Real mixQ = m_sum.real() * m_pll.getReal() + m_sum.imag() * m_pll.getImag();
|
|
|
|
// Real mixI = m_pll.getReal() * SDR_RX_SCALED;
|
|
|
|
// Real mixQ = m_pll.getImag() * SDR_RX_SCALED;
|
2018-05-12 00:01:54 -04:00
|
|
|
|
|
|
|
if (m_running.m_ssb & !m_usb)
|
|
|
|
{ // invert spectrum for LSB
|
|
|
|
m_sampleBuffer.push_back(Sample(mixQ, mixI));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_sampleBuffer.push_back(Sample(mixI, mixQ));
|
|
|
|
}
|
2017-11-08 08:23:49 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-05-12 00:01:54 -04:00
|
|
|
if (m_running.m_ssb & !m_usb)
|
|
|
|
{ // invert spectrum for LSB
|
|
|
|
m_sampleBuffer.push_back(Sample(m_sum.imag(), m_sum.real()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_sampleBuffer.push_back(Sample(m_sum.real(), m_sum.imag()));
|
|
|
|
}
|
2017-11-08 08:23:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
m_sum = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_CHANALYZERNG_H
|