2024-06-16 09:31:13 +00:00
|
|
|
/* TXA.h
|
|
|
|
|
|
|
|
This file is part of a program that implements a Software-Defined Radio.
|
|
|
|
|
|
|
|
Copyright (C) 2013, 2017 Warren Pratt, NR0V
|
|
|
|
Copyright (C) 2024 Edouard Griffiths, F4EXB Adapted to SDRangel
|
|
|
|
|
|
|
|
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; either version 2
|
|
|
|
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 for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
The author can be reached by email at
|
|
|
|
|
|
|
|
warren@wpratt.com
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef wdsp_txa_h
|
|
|
|
#define wdsp_txa_h
|
|
|
|
|
|
|
|
#include "comm.hpp"
|
|
|
|
#include "unit.hpp"
|
|
|
|
|
|
|
|
#include "ammod.hpp"
|
|
|
|
#include "meter.hpp"
|
|
|
|
#include "resample.hpp"
|
|
|
|
#include "patchpanel.hpp"
|
|
|
|
#include "amsq.hpp"
|
2024-07-27 03:32:45 +00:00
|
|
|
#include "eqp.hpp"
|
2024-06-16 09:31:13 +00:00
|
|
|
#include "cfcomp.hpp"
|
|
|
|
#include "compress.hpp"
|
|
|
|
#include "bandpass.hpp"
|
|
|
|
#include "bps.hpp"
|
|
|
|
#include "osctrl.hpp"
|
|
|
|
#include "wcpAGC.hpp"
|
|
|
|
#include "emph.hpp"
|
|
|
|
#include "fmmod.hpp"
|
|
|
|
#include "siphon.hpp"
|
|
|
|
#include "gen.hpp"
|
|
|
|
#include "slew.hpp"
|
|
|
|
// #include "calcc.h"
|
|
|
|
#include "iqc.hpp"
|
|
|
|
#include "cfir.hpp"
|
|
|
|
#include "export.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace WDSP {
|
|
|
|
|
|
|
|
class METER;
|
|
|
|
class RESAMPLE;
|
|
|
|
class PANEL;
|
|
|
|
class AMSQ;
|
|
|
|
class EQP;
|
|
|
|
class PHROT;
|
|
|
|
class CFCOMP;
|
|
|
|
class COMPRESSOR;
|
|
|
|
class BANDPASS;
|
|
|
|
class BPS;
|
|
|
|
class OSCTRL;
|
|
|
|
class WCPAGC;
|
|
|
|
class AMMOD;
|
|
|
|
class EMPHP;
|
|
|
|
class FMMOD;
|
|
|
|
class SIPHON;
|
|
|
|
class GEN;
|
|
|
|
class USLEW;
|
|
|
|
class IQC;
|
|
|
|
class CFIR;
|
|
|
|
|
|
|
|
class WDSP_API TXA : public Unit
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum txaMode
|
|
|
|
{
|
|
|
|
TXA_LSB,
|
|
|
|
TXA_USB,
|
|
|
|
TXA_DSB,
|
|
|
|
TXA_CWL,
|
|
|
|
TXA_CWU,
|
|
|
|
TXA_FM,
|
|
|
|
TXA_AM,
|
|
|
|
TXA_DIGU,
|
|
|
|
TXA_SPEC,
|
|
|
|
TXA_DIGL,
|
|
|
|
TXA_SAM,
|
|
|
|
TXA_DRM,
|
|
|
|
TXA_AM_LSB,
|
|
|
|
TXA_AM_USB
|
|
|
|
};
|
|
|
|
|
|
|
|
enum txaMeterType
|
|
|
|
{
|
|
|
|
TXA_MIC_PK,
|
|
|
|
TXA_MIC_AV,
|
|
|
|
TXA_EQ_PK,
|
|
|
|
TXA_EQ_AV,
|
|
|
|
TXA_LVLR_PK,
|
|
|
|
TXA_LVLR_AV,
|
|
|
|
TXA_LVLR_GAIN,
|
|
|
|
TXA_CFC_PK,
|
|
|
|
TXA_CFC_AV,
|
|
|
|
TXA_CFC_GAIN,
|
|
|
|
TXA_COMP_PK,
|
|
|
|
TXA_COMP_AV,
|
|
|
|
TXA_ALC_PK,
|
|
|
|
TXA_ALC_AV,
|
|
|
|
TXA_ALC_GAIN,
|
|
|
|
TXA_OUT_PK,
|
|
|
|
TXA_OUT_AV,
|
|
|
|
TXA_METERTYPE_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
int mode;
|
2024-06-25 01:50:48 +00:00
|
|
|
float f_low;
|
|
|
|
float f_high;
|
2024-07-13 01:53:57 +00:00
|
|
|
double meter[TXA_METERTYPE_LAST];
|
2024-07-13 22:05:10 +00:00
|
|
|
long upslew;
|
2024-07-13 21:59:46 +00:00
|
|
|
|
2024-07-27 03:32:45 +00:00
|
|
|
METER *micmeter;
|
|
|
|
METER *eqmeter;
|
|
|
|
METER *lvlrmeter;
|
|
|
|
METER *cfcmeter;
|
|
|
|
METER *compmeter;
|
|
|
|
METER *alcmeter;
|
|
|
|
METER *outmeter;
|
|
|
|
RESAMPLE *rsmpin;
|
|
|
|
RESAMPLE *rsmpout;
|
|
|
|
PANEL *panel;
|
|
|
|
AMSQ *amsq;
|
|
|
|
EQP *eqp;
|
|
|
|
PHROT *phrot;
|
|
|
|
CFCOMP *cfcomp;
|
|
|
|
COMPRESSOR *compressor;
|
|
|
|
BANDPASS *bp0;
|
|
|
|
BANDPASS *bp1;
|
|
|
|
BANDPASS *bp2;
|
|
|
|
BPS *bps0;
|
|
|
|
BPS *bps1;
|
|
|
|
BPS *bps2;
|
|
|
|
OSCTRL *osctrl;
|
|
|
|
WCPAGC *leveler;
|
|
|
|
WCPAGC *alc;
|
|
|
|
AMMOD *ammod;
|
|
|
|
EMPHP *preemph;
|
|
|
|
FMMOD *fmmod;
|
|
|
|
SIPHON *sip1;
|
|
|
|
GEN *gen0;
|
|
|
|
GEN *gen1;
|
|
|
|
USLEW *uslew;
|
2024-06-16 09:31:13 +00:00
|
|
|
// struct
|
|
|
|
// {
|
|
|
|
// CALCC *p;
|
|
|
|
// CRITICAL_SECTION cs_update;
|
|
|
|
// } calcc;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
IQC *p0, *p1;
|
|
|
|
// p0 for dsp-synchronized reference, p1 for other
|
|
|
|
} iqc;
|
2024-07-27 03:32:45 +00:00
|
|
|
CFIR *cfir;
|
2024-06-16 09:31:13 +00:00
|
|
|
|
|
|
|
static TXA* create_txa (
|
|
|
|
int in_rate, // input samplerate
|
|
|
|
int out_rate, // output samplerate
|
|
|
|
int dsp_rate, // sample rate for mainstream dsp processing
|
2024-06-21 13:33:35 +00:00
|
|
|
int dsp_size // number complex samples processed per buffer in mainstream dsp processing
|
2024-06-16 09:31:13 +00:00
|
|
|
);
|
|
|
|
static void destroy_txa (TXA *txa);
|
|
|
|
static void flush_txa (TXA *txa);
|
|
|
|
static void xtxa (TXA *txa);
|
2024-06-21 13:33:35 +00:00
|
|
|
int get_insize() const { return dsp_insize; }
|
|
|
|
int get_outsize() const { return dsp_outsize; }
|
2024-06-25 01:50:48 +00:00
|
|
|
float *get_inbuff() { return inbuff; }
|
|
|
|
float *get_outbuff() { return outbuff; }
|
2024-06-21 13:33:35 +00:00
|
|
|
static void setInputSamplerate (TXA *txa, int in_rate);
|
|
|
|
static void setOutputSamplerate (TXA *txa, int out_rate);
|
|
|
|
static void setDSPSamplerate (TXA *txa, int dsp_rate);
|
|
|
|
static void setDSPBuffsize (TXA *txa, int dsp_size);
|
2024-06-16 09:31:13 +00:00
|
|
|
|
|
|
|
// TXA Properties
|
|
|
|
static void SetMode (TXA& txa, int mode);
|
2024-06-25 01:50:48 +00:00
|
|
|
static void SetBandpassFreqs (TXA& txa, float f_low, float f_high);
|
2024-07-29 22:45:32 +00:00
|
|
|
static void SetBandpassNC (TXA& txa, int nc);
|
|
|
|
static void SetBandpassMP (TXA& txa, int mp);
|
2024-06-16 09:31:13 +00:00
|
|
|
|
|
|
|
// Collectives
|
|
|
|
static void SetNC (TXA& txa, int nc);
|
|
|
|
static void SetMP (TXA& txa, int mp);
|
2024-06-25 01:50:48 +00:00
|
|
|
static void SetFMAFFilter (TXA& txa, float low, float high);
|
2024-06-16 09:31:13 +00:00
|
|
|
static void SetupBPFilters (TXA& txa);
|
|
|
|
static int UslewCheck (TXA& txa);
|
|
|
|
|
|
|
|
private:
|
|
|
|
static void ResCheck (TXA& txa);
|
2024-06-25 01:50:48 +00:00
|
|
|
float* inbuff;
|
|
|
|
float* midbuff;
|
|
|
|
float* outbuff;
|
2024-06-16 09:31:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace WDSP
|
|
|
|
|
|
|
|
#endif
|