sdrangel/sdrbase/dsp/afsquelch.h

92 lines
3.3 KiB
C
Raw Normal View History

///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2015-2019 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
// //
// 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 //
// (at your option) any later version. //
// //
// 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_GPL_DSP_AFSQUELCH_H_
#define INCLUDE_GPL_DSP_AFSQUELCH_H_
#include "dsp/movingaverage.h"
#include "export.h"
/** AFSquelch: AF squelch class based on the Modified Goertzel
* algorithm.
*/
2018-03-03 14:23:38 -05:00
class SDRBASE_API AFSquelch {
public:
// constructor with default values
AFSquelch();
virtual ~AFSquelch();
// setup the basic parameters and coefficients
void setCoefficients(
2017-05-16 09:36:30 -04:00
unsigned int N, //!< the algorithm "block" size
unsigned int nbAvg, //!< averaging size
unsigned int sampleRate, //!< input signal sample rate
unsigned int samplesAttack, //!< number of results before squelch opens
unsigned int samplesDecay, //!< number of results keeping squelch open
const double *tones); //!< center frequency of tones tested
// set the detection threshold
void setThreshold(double _threshold);
// analyze a sample set and optionally filter
// the tone frequencies.
2017-05-13 10:05:47 -04:00
bool analyze(double sample); // input signal sample
bool evaluate(); // evaluate result
// get the tone set
2017-05-13 10:05:47 -04:00
const double *getToneSet() const
{
2015-09-12 10:34:57 -04:00
return m_toneSet;
}
bool open() const {
2015-09-12 10:34:57 -04:00
return m_isOpen;
}
void reset(); // reset the analysis algorithm
protected:
2017-05-13 10:05:47 -04:00
void feedback(double sample);
void feedForward();
private:
unsigned int m_nbAvg; //!< number of power samples taken for moving average
2017-05-16 09:36:30 -04:00
unsigned int m_N;
unsigned int m_sampleRate;
unsigned int m_samplesProcessed;
unsigned int m_samplesAvgProcessed;
unsigned int m_maxPowerIndex;
unsigned int m_nTones;
unsigned int m_samplesAttack;
unsigned int m_attackCount;
unsigned int m_samplesDecay;
unsigned int m_decayCount;
2017-05-30 18:30:00 -04:00
unsigned int m_squelchCount;
2015-09-12 10:34:57 -04:00
bool m_isOpen;
double m_threshold;
double *m_k;
double *m_coef;
2017-05-13 10:05:47 -04:00
double *m_toneSet;
2015-09-12 10:34:57 -04:00
double *m_u0;
double *m_u1;
double *m_power;
2017-05-12 08:41:27 -04:00
std::vector<MovingAverage<double> > m_movingAverages;
};
#endif /* INCLUDE_GPL_DSP_CTCSSDETECTOR_H_ */