2016-11-29 17:58:41 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 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 PLUGINS_CHANNELTX_MODNFM_NFMMOD_H_
|
|
|
|
#define PLUGINS_CHANNELTX_MODNFM_NFMMOD_H_
|
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
#include <vector>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
#include "dsp/basebandsamplesource.h"
|
|
|
|
#include "dsp/nco.h"
|
2016-12-18 20:41:48 -05:00
|
|
|
#include "dsp/ncof.h"
|
2016-11-29 17:58:41 -05:00
|
|
|
#include "dsp/interpolator.h"
|
|
|
|
#include "dsp/lowpass.h"
|
2016-11-30 07:39:25 -05:00
|
|
|
#include "dsp/bandpass.h"
|
2016-11-29 17:58:41 -05:00
|
|
|
#include "dsp/movingaverage.h"
|
|
|
|
#include "dsp/agc.h"
|
2016-12-11 16:47:42 -05:00
|
|
|
#include "dsp/cwkeyer.h"
|
2016-11-29 17:58:41 -05:00
|
|
|
#include "audio/audiofifo.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
|
|
|
class NFMMod : public BasebandSampleSource {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
NFMModInputNone,
|
|
|
|
NFMModInputTone,
|
|
|
|
NFMModInputFile,
|
2016-12-11 16:47:42 -05:00
|
|
|
NFMModInputAudio,
|
|
|
|
NFMModInputCWTone
|
2016-11-29 17:58:41 -05:00
|
|
|
} NFMModInputAF;
|
|
|
|
|
|
|
|
class MsgConfigureFileSourceName : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
const QString& getFileName() const { return m_fileName; }
|
|
|
|
|
|
|
|
static MsgConfigureFileSourceName* create(const QString& fileName)
|
|
|
|
{
|
|
|
|
return new MsgConfigureFileSourceName(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_fileName;
|
|
|
|
|
|
|
|
MsgConfigureFileSourceName(const QString& fileName) :
|
|
|
|
Message(),
|
|
|
|
m_fileName(fileName)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgConfigureFileSourceSeek : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getPercentage() const { return m_seekPercentage; }
|
|
|
|
|
|
|
|
static MsgConfigureFileSourceSeek* create(int seekPercentage)
|
|
|
|
{
|
|
|
|
return new MsgConfigureFileSourceSeek(seekPercentage);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_seekPercentage; //!< percentage of seek position from the beginning 0..100
|
|
|
|
|
|
|
|
MsgConfigureFileSourceSeek(int seekPercentage) :
|
|
|
|
Message(),
|
|
|
|
m_seekPercentage(seekPercentage)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgConfigureFileSourceStreamTiming : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static MsgConfigureFileSourceStreamTiming* create()
|
|
|
|
{
|
|
|
|
return new MsgConfigureFileSourceStreamTiming();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
MsgConfigureFileSourceStreamTiming() :
|
|
|
|
Message()
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgConfigureAFInput : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
NFMModInputAF getAFInput() const { return m_afInput; }
|
|
|
|
|
|
|
|
static MsgConfigureAFInput* create(NFMModInputAF afInput)
|
|
|
|
{
|
|
|
|
return new MsgConfigureAFInput(afInput);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
NFMModInputAF m_afInput;
|
|
|
|
|
|
|
|
MsgConfigureAFInput(NFMModInputAF afInput) :
|
|
|
|
Message(),
|
|
|
|
m_afInput(afInput)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportFileSourceStreamTiming : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
std::size_t getSamplesCount() const { return m_samplesCount; }
|
|
|
|
|
|
|
|
static MsgReportFileSourceStreamTiming* create(std::size_t samplesCount)
|
|
|
|
{
|
|
|
|
return new MsgReportFileSourceStreamTiming(samplesCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::size_t m_samplesCount;
|
|
|
|
|
|
|
|
MsgReportFileSourceStreamTiming(std::size_t samplesCount) :
|
|
|
|
Message(),
|
|
|
|
m_samplesCount(samplesCount)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportFileSourceStreamData : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getSampleRate() const { return m_sampleRate; }
|
|
|
|
quint32 getRecordLength() const { return m_recordLength; }
|
|
|
|
|
|
|
|
static MsgReportFileSourceStreamData* create(int sampleRate,
|
|
|
|
quint32 recordLength)
|
|
|
|
{
|
|
|
|
return new MsgReportFileSourceStreamData(sampleRate, recordLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_sampleRate;
|
|
|
|
quint32 m_recordLength;
|
|
|
|
|
|
|
|
MsgReportFileSourceStreamData(int sampleRate,
|
|
|
|
quint32 recordLength) :
|
|
|
|
Message(),
|
|
|
|
m_sampleRate(sampleRate),
|
|
|
|
m_recordLength(recordLength)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
//=================================================================
|
|
|
|
|
|
|
|
NFMMod();
|
|
|
|
~NFMMod();
|
|
|
|
|
2016-11-30 19:19:50 -05:00
|
|
|
void configure(MessageQueue* messageQueue,
|
|
|
|
Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
float fmDeviation,
|
|
|
|
float toneFrequency,
|
2016-12-01 02:45:09 -05:00
|
|
|
float volumeFactor,
|
2016-12-20 10:38:27 -05:00
|
|
|
bool channelMute,
|
2016-12-18 20:41:48 -05:00
|
|
|
bool playLoop,
|
|
|
|
bool ctcssOn,
|
|
|
|
float ctcssFrequency);
|
2016-11-29 17:58:41 -05:00
|
|
|
|
|
|
|
virtual void pull(Sample& sample);
|
2016-12-25 19:39:34 -05:00
|
|
|
virtual void pullAudio(int nbSamples);
|
2016-11-29 17:58:41 -05:00
|
|
|
virtual void start();
|
|
|
|
virtual void stop();
|
|
|
|
virtual bool handleMessage(const Message& cmd);
|
|
|
|
|
2017-05-16 17:39:49 -04:00
|
|
|
double getMagSq() const { return m_magsq; }
|
2016-11-29 17:58:41 -05:00
|
|
|
|
2016-12-11 16:47:42 -05:00
|
|
|
CWKeyer *getCWKeyer() { return &m_cwKeyer; }
|
|
|
|
|
2016-12-01 20:00:53 -05:00
|
|
|
signals:
|
|
|
|
/**
|
|
|
|
* Level changed
|
|
|
|
* \param rmsLevel RMS level in range 0.0 - 1.0
|
|
|
|
* \param peakLevel Peak level in range 0.0 - 1.0
|
|
|
|
* \param numSamples Number of audio samples analyzed
|
|
|
|
*/
|
|
|
|
void levelChanged(qreal rmsLevel, qreal peakLevel, int numSamples);
|
|
|
|
|
|
|
|
|
2016-11-29 17:58:41 -05:00
|
|
|
private:
|
|
|
|
class MsgConfigureNFMMod : public Message
|
|
|
|
{
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
Real getRFBandwidth() const { return m_rfBandwidth; }
|
|
|
|
Real getAFBandwidth() const { return m_afBandwidth; }
|
2016-11-29 18:55:35 -05:00
|
|
|
float getFMDeviation() const { return m_fmDeviation; }
|
2016-11-30 19:19:50 -05:00
|
|
|
float getToneFrequency() const { return m_toneFrequency; }
|
2016-12-01 02:45:09 -05:00
|
|
|
float getVolumeFactor() const { return m_volumeFactor; }
|
2016-12-20 10:38:27 -05:00
|
|
|
bool getChannelMute() const { return m_channelMute; }
|
2016-11-29 17:58:41 -05:00
|
|
|
bool getPlayLoop() const { return m_playLoop; }
|
2016-12-18 20:41:48 -05:00
|
|
|
bool getCTCSSOn() const { return m_ctcssOn; }
|
|
|
|
float getCTCSSFrequency() const { return m_ctcssFrequency; }
|
|
|
|
|
|
|
|
static MsgConfigureNFMMod* create(Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
float fmDeviation,
|
|
|
|
float toneFrequency,
|
|
|
|
float volumeFactor,
|
2016-12-20 10:38:27 -05:00
|
|
|
bool channelMute,
|
2016-12-18 20:41:48 -05:00
|
|
|
bool playLoop,
|
|
|
|
bool ctcssOn,
|
|
|
|
float ctcssFrequency)
|
2016-11-29 17:58:41 -05:00
|
|
|
{
|
2016-12-18 20:41:48 -05:00
|
|
|
return new MsgConfigureNFMMod(rfBandwidth,
|
|
|
|
afBandwidth,
|
|
|
|
fmDeviation,
|
|
|
|
toneFrequency,
|
|
|
|
volumeFactor,
|
2016-12-20 10:38:27 -05:00
|
|
|
channelMute,
|
2016-12-18 20:41:48 -05:00
|
|
|
playLoop,
|
|
|
|
ctcssOn,
|
|
|
|
ctcssFrequency);
|
2016-11-29 17:58:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Real m_rfBandwidth;
|
|
|
|
Real m_afBandwidth;
|
2016-11-29 18:55:35 -05:00
|
|
|
float m_fmDeviation;
|
2016-11-30 19:19:50 -05:00
|
|
|
float m_toneFrequency;
|
2016-12-01 02:45:09 -05:00
|
|
|
float m_volumeFactor;
|
2016-12-20 10:38:27 -05:00
|
|
|
bool m_channelMute;
|
2016-11-29 17:58:41 -05:00
|
|
|
bool m_playLoop;
|
2016-12-18 20:41:48 -05:00
|
|
|
bool m_ctcssOn;
|
|
|
|
float m_ctcssFrequency;
|
|
|
|
|
|
|
|
MsgConfigureNFMMod(Real rfBandwidth,
|
|
|
|
Real afBandwidth,
|
|
|
|
float fmDeviation,
|
|
|
|
float toneFrequency,
|
|
|
|
float volumeFactor,
|
2016-12-20 10:38:27 -05:00
|
|
|
bool channelMute,
|
2016-12-18 20:41:48 -05:00
|
|
|
bool playLoop,
|
|
|
|
bool ctcssOn,
|
|
|
|
float ctcssFrequency) :
|
2016-11-29 17:58:41 -05:00
|
|
|
Message(),
|
|
|
|
m_rfBandwidth(rfBandwidth),
|
|
|
|
m_afBandwidth(afBandwidth),
|
2016-11-29 18:55:35 -05:00
|
|
|
m_fmDeviation(fmDeviation),
|
2016-11-30 19:19:50 -05:00
|
|
|
m_toneFrequency(toneFrequency),
|
2016-11-29 17:58:41 -05:00
|
|
|
m_volumeFactor(volumeFactor),
|
2016-12-20 10:38:27 -05:00
|
|
|
m_channelMute(channelMute),
|
2016-12-18 20:41:48 -05:00
|
|
|
m_playLoop(playLoop),
|
|
|
|
m_ctcssOn(ctcssOn),
|
|
|
|
m_ctcssFrequency(ctcssFrequency)
|
2016-11-29 17:58:41 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
//=================================================================
|
|
|
|
|
|
|
|
enum RateState {
|
|
|
|
RSInitialFill,
|
|
|
|
RSRunning
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Config {
|
2017-08-06 11:38:17 -04:00
|
|
|
int m_basebandSampleRate;
|
2016-11-29 17:58:41 -05:00
|
|
|
int m_outputSampleRate;
|
|
|
|
qint64 m_inputFrequencyOffset;
|
|
|
|
Real m_rfBandwidth;
|
|
|
|
Real m_afBandwidth;
|
2016-11-29 18:55:35 -05:00
|
|
|
float m_fmDeviation;
|
2016-11-30 19:19:50 -05:00
|
|
|
float m_toneFrequency;
|
2016-12-01 02:45:09 -05:00
|
|
|
float m_volumeFactor;
|
2016-11-29 17:58:41 -05:00
|
|
|
quint32 m_audioSampleRate;
|
2016-12-20 10:38:27 -05:00
|
|
|
bool m_channelMute;
|
2016-11-29 17:58:41 -05:00
|
|
|
bool m_playLoop;
|
2016-12-18 20:41:48 -05:00
|
|
|
bool m_ctcssOn;
|
|
|
|
float m_ctcssFrequency;
|
2016-11-29 17:58:41 -05:00
|
|
|
|
|
|
|
Config() :
|
2017-08-06 11:38:17 -04:00
|
|
|
m_basebandSampleRate(0),
|
2016-11-29 17:58:41 -05:00
|
|
|
m_outputSampleRate(-1),
|
|
|
|
m_inputFrequencyOffset(0),
|
|
|
|
m_rfBandwidth(-1),
|
|
|
|
m_afBandwidth(-1),
|
2016-11-30 19:19:50 -05:00
|
|
|
m_fmDeviation(5000.0f),
|
|
|
|
m_toneFrequency(1000.0f),
|
2016-12-01 02:45:09 -05:00
|
|
|
m_volumeFactor(1.0f),
|
2016-11-29 17:58:41 -05:00
|
|
|
m_audioSampleRate(0),
|
2016-12-20 10:38:27 -05:00
|
|
|
m_channelMute(false),
|
2016-12-18 20:41:48 -05:00
|
|
|
m_playLoop(false),
|
|
|
|
m_ctcssOn(false),
|
|
|
|
m_ctcssFrequency(88.5)
|
2016-11-29 17:58:41 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
//=================================================================
|
|
|
|
|
|
|
|
Config m_config;
|
|
|
|
Config m_running;
|
|
|
|
|
|
|
|
NCO m_carrierNco;
|
2016-12-18 20:41:48 -05:00
|
|
|
NCOF m_toneNco;
|
|
|
|
NCOF m_ctcssNco;
|
2016-11-30 07:39:25 -05:00
|
|
|
float m_modPhasor; //!< baseband modulator phasor
|
2016-11-29 17:58:41 -05:00
|
|
|
Complex m_modSample;
|
|
|
|
Interpolator m_interpolator;
|
|
|
|
Real m_interpolatorDistance;
|
|
|
|
Real m_interpolatorDistanceRemain;
|
|
|
|
bool m_interpolatorConsumed;
|
|
|
|
Lowpass<Real> m_lowpass;
|
2016-11-30 07:39:25 -05:00
|
|
|
Bandpass<Real> m_bandpass;
|
2016-11-29 17:58:41 -05:00
|
|
|
|
2017-05-16 17:39:49 -04:00
|
|
|
double m_magsq;
|
2017-05-11 18:03:56 -04:00
|
|
|
MovingAverage<double> m_movingAverage;
|
2016-11-29 17:58:41 -05:00
|
|
|
SimpleAGC m_volumeAGC;
|
|
|
|
|
2016-12-25 19:39:34 -05:00
|
|
|
AudioVector m_audioBuffer;
|
|
|
|
uint m_audioBufferFill;
|
2016-11-29 17:58:41 -05:00
|
|
|
|
|
|
|
AudioFifo m_audioFifo;
|
|
|
|
SampleVector m_sampleBuffer;
|
|
|
|
QMutex m_settingsMutex;
|
|
|
|
|
|
|
|
std::ifstream m_ifstream;
|
|
|
|
QString m_fileName;
|
|
|
|
quint64 m_fileSize; //!< raw file size (bytes)
|
|
|
|
quint32 m_recordLength; //!< record length in seconds computed from file size
|
|
|
|
int m_sampleRate;
|
|
|
|
|
|
|
|
NFMModInputAF m_afInput;
|
2016-12-01 20:00:53 -05:00
|
|
|
quint32 m_levelCalcCount;
|
|
|
|
Real m_peakLevel;
|
|
|
|
Real m_levelSum;
|
2016-12-11 16:47:42 -05:00
|
|
|
CWKeyer m_cwKeyer;
|
2016-12-14 17:59:25 -05:00
|
|
|
CWSmoother m_cwSmoother;
|
2016-12-01 20:00:53 -05:00
|
|
|
static const int m_levelNbSamples;
|
2016-11-29 17:58:41 -05:00
|
|
|
|
|
|
|
void apply();
|
|
|
|
void pullAF(Real& sample);
|
2016-12-01 20:00:53 -05:00
|
|
|
void calculateLevel(Real& sample);
|
2016-11-30 07:39:25 -05:00
|
|
|
void modulateSample();
|
2016-11-29 17:58:41 -05:00
|
|
|
void openFileStream();
|
|
|
|
void seekFileStream(int seekPercentage);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PLUGINS_CHANNELTX_MODNFM_NFMMOD_H_ */
|