2018-05-15 19:57:16 -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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2018-05-15 19:57:16 -04:00
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-11-24 04:12:58 -05:00
|
|
|
#ifndef INCLUDE_CHANALYZER_H
|
|
|
|
#define INCLUDE_CHANALYZER_H
|
2018-05-15 19:57:16 -04:00
|
|
|
|
|
|
|
#include <QMutex>
|
2020-07-13 04:33:05 -04:00
|
|
|
#include <QThread>
|
2018-05-15 19:57:16 -04:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "dsp/basebandsamplesink.h"
|
2020-04-30 03:57:05 -04:00
|
|
|
#include "dsp/spectrumvis.h"
|
2021-05-30 07:12:00 -04:00
|
|
|
#include "dsp/scopevis.h"
|
2019-05-09 11:27:12 -04:00
|
|
|
#include "channel/channelapi.h"
|
2018-05-15 19:57:16 -04:00
|
|
|
#include "util/message.h"
|
2018-06-26 14:03:56 -04:00
|
|
|
#include "util/movingaverage.h"
|
2018-05-15 19:57:16 -04:00
|
|
|
|
2019-11-24 04:12:58 -05:00
|
|
|
#include "chanalyzerbaseband.h"
|
2018-05-18 23:03:56 -04:00
|
|
|
|
2019-12-13 09:15:21 -05:00
|
|
|
class DownChannelizer;
|
2018-05-15 19:57:16 -04:00
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
class ChannelAnalyzer : public BasebandSampleSink, public ChannelAPI {
|
2018-05-15 19:57:16 -04:00
|
|
|
public:
|
|
|
|
class MsgConfigureChannelAnalyzer : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
2018-05-18 23:03:56 -04:00
|
|
|
public:
|
2018-05-30 09:37:56 -04:00
|
|
|
const ChannelAnalyzerSettings& getSettings() const { return m_settings; }
|
2018-05-18 23:03:56 -04:00
|
|
|
bool getForce() const { return m_force; }
|
|
|
|
|
2019-11-24 04:12:58 -05:00
|
|
|
static MsgConfigureChannelAnalyzer* create(const ChannelAnalyzerSettings& settings, bool force) {
|
2018-05-18 23:03:56 -04:00
|
|
|
return new MsgConfigureChannelAnalyzer(settings, force);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-05-30 09:37:56 -04:00
|
|
|
ChannelAnalyzerSettings m_settings;
|
2018-05-18 23:03:56 -04:00
|
|
|
bool m_force;
|
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
MsgConfigureChannelAnalyzer(const ChannelAnalyzerSettings& settings, bool force) :
|
2018-05-18 23:03:56 -04:00
|
|
|
Message(),
|
|
|
|
m_settings(settings),
|
|
|
|
m_force(force)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2019-05-08 16:11:53 -04:00
|
|
|
ChannelAnalyzer(DeviceAPI *deviceAPI);
|
2018-05-30 09:37:56 -04:00
|
|
|
virtual ~ChannelAnalyzer();
|
2018-05-15 19:57:16 -04:00
|
|
|
virtual void destroy() { delete this; }
|
2020-04-30 03:57:05 -04:00
|
|
|
SpectrumVis *getSpectrumVis() { return &m_spectrumVis; }
|
2021-05-30 07:12:00 -04:00
|
|
|
ScopeVis *getScopeVis() { return &m_scopeVis; }
|
2020-06-20 00:08:38 -04:00
|
|
|
void setSampleSink(BasebandSampleSink *sink) { m_basebandSink->setSampleSink(sink); }
|
2019-11-24 04:12:58 -05:00
|
|
|
|
|
|
|
int getChannelSampleRate() const { return m_basebandSink->getChannelSampleRate(); }
|
|
|
|
int getDecimation() const { return 1<<m_settings.m_log2Decim; }
|
|
|
|
double getMagSq() const { return m_basebandSink->getMagSq(); }
|
|
|
|
double getMagSqAvg() const { return m_basebandSink->getMagSqAvg(); }
|
|
|
|
bool isPllLocked() const { return m_basebandSink->isPllLocked(); }
|
|
|
|
Real getPllFrequency() const { return m_basebandSink->getPllFrequency(); }
|
|
|
|
Real getPllDeltaPhase() const { return m_basebandSink->getPllDeltaPhase(); }
|
|
|
|
Real getPllPhase() const { return m_basebandSink->getPllPhase(); }
|
2018-05-15 19:57:16 -04:00
|
|
|
|
2020-11-15 02:31:49 -05:00
|
|
|
using BasebandSampleSink::feed;
|
|
|
|
virtual void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, bool po);
|
2018-05-15 19:57:16 -04:00
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
virtual void getIdentifier(QString& id) { id = objectName(); }
|
2018-05-15 19:57:16 -04:00
|
|
|
virtual void getTitle(QString& title) { title = objectName(); }
|
2019-11-24 04:12:58 -05:00
|
|
|
virtual qint64 getCenterFrequency() const { return m_settings.m_inputFrequencyOffset; }
|
2018-05-15 19:57:16 -04:00
|
|
|
|
|
|
|
virtual QByteArray serialize() const { return QByteArray(); }
|
2018-11-12 18:45:03 -05:00
|
|
|
virtual bool deserialize(const QByteArray& data) { (void) data; return false; }
|
2018-05-15 19:57:16 -04:00
|
|
|
|
2019-05-09 11:27:12 -04:00
|
|
|
virtual int getNbSinkStreams() const { return 1; }
|
|
|
|
virtual int getNbSourceStreams() const { return 0; }
|
|
|
|
|
|
|
|
virtual qint64 getStreamCenterFrequency(int streamIndex, bool sinkElseSource) const
|
|
|
|
{
|
|
|
|
(void) streamIndex;
|
|
|
|
(void) sinkElseSource;
|
2019-11-24 04:12:58 -05:00
|
|
|
return m_settings.m_inputFrequencyOffset;
|
2019-05-09 11:27:12 -04:00
|
|
|
}
|
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
static const char* const m_channelIdURI;
|
|
|
|
static const char* const m_channelId;
|
2018-05-15 19:57:16 -04:00
|
|
|
|
|
|
|
private:
|
2019-05-08 16:11:53 -04:00
|
|
|
DeviceAPI *m_deviceAPI;
|
2020-07-13 04:33:05 -04:00
|
|
|
QThread m_thread;
|
2019-11-24 04:12:58 -05:00
|
|
|
ChannelAnalyzerBaseband *m_basebandSink;
|
2018-05-30 09:37:56 -04:00
|
|
|
ChannelAnalyzerSettings m_settings;
|
2020-04-30 03:57:05 -04:00
|
|
|
SpectrumVis m_spectrumVis;
|
2021-05-30 07:12:00 -04:00
|
|
|
ScopeVis m_scopeVis;
|
2019-11-24 04:12:58 -05:00
|
|
|
int m_basebandSampleRate; //!< stored from device message used when starting baseband sink
|
2020-07-13 04:33:05 -04:00
|
|
|
qint64 m_centerFrequency; //!< stored from device message used when starting baseband sink
|
2018-05-15 19:57:16 -04:00
|
|
|
|
2018-05-30 09:37:56 -04:00
|
|
|
void applySettings(const ChannelAnalyzerSettings& settings, bool force = false);
|
2018-05-15 19:57:16 -04:00
|
|
|
};
|
|
|
|
|
2019-11-24 04:12:58 -05:00
|
|
|
#endif // INCLUDE_CHANALYZER_H
|