2024-06-16 05:31:13 -04:00
|
|
|
/* RXA.c
|
|
|
|
|
|
|
|
This file is part of a program that implements a Software-Defined Radio.
|
|
|
|
|
|
|
|
Copyright (C) 2013, 2014, 2015, 2016, 2023 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
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "comm.hpp"
|
|
|
|
|
|
|
|
#include "RXA.hpp"
|
|
|
|
#include "amd.hpp"
|
|
|
|
#include "meter.hpp"
|
|
|
|
#include "shift.hpp"
|
|
|
|
#include "resample.hpp"
|
|
|
|
#include "bandpass.hpp"
|
|
|
|
#include "bps.hpp"
|
|
|
|
#include "nbp.hpp"
|
2024-07-02 18:52:16 -04:00
|
|
|
#include "snba.hpp"
|
|
|
|
#include "bpsnba.hpp"
|
2024-06-16 05:31:13 -04:00
|
|
|
#include "sender.hpp"
|
|
|
|
#include "amsq.hpp"
|
|
|
|
#include "fmd.hpp"
|
|
|
|
#include "fmsq.hpp"
|
2024-07-26 23:32:45 -04:00
|
|
|
#include "eqp.hpp"
|
2024-06-16 05:31:13 -04:00
|
|
|
#include "anf.hpp"
|
|
|
|
#include "anr.hpp"
|
|
|
|
#include "emnr.hpp"
|
|
|
|
#include "patchpanel.hpp"
|
|
|
|
#include "siphon.hpp"
|
|
|
|
#include "cblock.hpp"
|
|
|
|
#include "ssql.hpp"
|
2024-07-12 21:20:26 -04:00
|
|
|
#include "fircore.hpp"
|
2024-06-16 05:31:13 -04:00
|
|
|
#include "wcpAGC.hpp"
|
2024-06-29 14:03:13 -04:00
|
|
|
#include "anb.hpp"
|
|
|
|
#include "nob.hpp"
|
2024-07-30 19:37:17 -04:00
|
|
|
#include "speak.hpp"
|
|
|
|
#include "mpeak.hpp"
|
2024-08-05 14:05:59 -04:00
|
|
|
#include "fir.hpp"
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
namespace WDSP {
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
RXA::RXA(
|
|
|
|
int _in_rate, // input samplerate
|
|
|
|
int _out_rate, // output samplerate
|
|
|
|
int _dsp_rate, // sample rate for mainstream dsp processing
|
|
|
|
int _dsp_size // number complex samples processed per buffer in mainstream dsp processing
|
|
|
|
) : Unit(
|
|
|
|
_in_rate,
|
|
|
|
_out_rate,
|
|
|
|
_dsp_rate,
|
|
|
|
_dsp_size
|
2024-06-16 05:31:13 -04:00
|
|
|
)
|
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
mode = RXA::RXA_LSB;
|
2024-08-05 14:05:59 -04:00
|
|
|
std::fill(meter.begin(), meter.end(), 0);
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-29 14:03:13 -04:00
|
|
|
// Noise blanker (ANB or "NB")
|
2024-08-03 07:54:42 -04:00
|
|
|
anb = new ANB(
|
2024-06-29 14:03:13 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_insize, // input buffer size
|
|
|
|
inbuff, // pointer to input buffer
|
|
|
|
inbuff, // pointer to output buffer
|
|
|
|
in_rate, // samplerate
|
2024-06-29 14:03:13 -04:00
|
|
|
0.0001, // tau
|
|
|
|
0.0001, // hang time
|
|
|
|
0.0001, // advance time
|
|
|
|
0.05, // back tau
|
2024-06-30 16:16:30 -04:00
|
|
|
30 // thershold
|
2024-06-29 14:03:13 -04:00
|
|
|
);
|
|
|
|
// Noise blanker (NOB or "NB2")
|
2024-08-03 07:54:42 -04:00
|
|
|
nob = new NOB(
|
2024-06-29 14:03:13 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_insize, // input buffer size
|
|
|
|
inbuff, // pointer to input buffer
|
|
|
|
inbuff, // pointer to output buffer
|
|
|
|
in_rate, // samplerate
|
2024-06-29 14:03:13 -04:00
|
|
|
0, // mode (zero)
|
|
|
|
0.0001, // advance slew time
|
|
|
|
0.0001, // advance time
|
|
|
|
0.0001, // hang slew time
|
|
|
|
0.0001, // hang time
|
|
|
|
0.025, // max_imp_seq_time:
|
|
|
|
0.05, // back tau
|
|
|
|
30
|
|
|
|
);
|
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Ftequency shifter - shift to select a slice of spectrum
|
2024-08-03 07:54:42 -04:00
|
|
|
shift = new SHIFT(
|
2024-07-11 23:00:12 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_insize, // input buffer size
|
|
|
|
inbuff, // pointer to input buffer
|
|
|
|
inbuff, // pointer to output buffer
|
|
|
|
in_rate, // samplerate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.0); // amount to shift (Hz)
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Input resampler - resample to dsp rate for main processing
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpin = new RESAMPLE(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - will be turned ON below if needed
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_insize, // input buffer size
|
|
|
|
inbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
|
|
|
in_rate, // input samplerate
|
|
|
|
dsp_rate, // output samplerate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.0, // select cutoff automatically
|
|
|
|
0, // select ncoef automatically
|
|
|
|
1.0); // gain
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Input meter - ADC
|
2024-08-03 07:54:42 -04:00
|
|
|
adcmeter = new METER(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-05 14:05:59 -04:00
|
|
|
nullptr, // optional pointer to another 'run'
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
midbuff, // pointer to buffer
|
|
|
|
dsp_rate, // samplerate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.100, // averaging time constant
|
|
|
|
0.100, // peak decay time constant
|
2024-08-05 14:05:59 -04:00
|
|
|
meter.data(), // result vector
|
2024-06-24 04:20:14 -04:00
|
|
|
RXA_ADC_AV, // index for average value
|
|
|
|
RXA_ADC_PK, // index for peak value
|
2024-07-12 21:53:57 -04:00
|
|
|
-1, // index for gain value - disabled
|
2024-08-05 14:05:59 -04:00
|
|
|
nullptr); // pointer for gain computation
|
2024-06-24 04:20:14 -04:00
|
|
|
|
|
|
|
// Notched bandpass section
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
// notch database
|
2024-08-03 07:54:42 -04:00
|
|
|
ndb = new NOTCHDB (
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // master run for all nbp's
|
|
|
|
1024); // max number of notches
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
// notched bandpass
|
2024-08-03 07:54:42 -04:00
|
|
|
nbp0 = new NBP (
|
2024-06-24 04:20:14 -04:00
|
|
|
1, // run, always runs
|
|
|
|
0, // run the notches
|
|
|
|
0, // position
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
std::max(2048, dsp_size), // number of coefficients
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // minimum phase flag
|
2024-08-03 07:54:42 -04:00
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
-4150.0, // lower filter frequency
|
|
|
|
-150.0, // upper filter frequency
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // wintype
|
|
|
|
1.0, // gain
|
|
|
|
1, // auto-increase notch width
|
|
|
|
1025, // max number of passbands
|
2024-08-03 07:54:42 -04:00
|
|
|
ndb); // addr of database pointer
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
// bandpass for snba
|
2024-08-03 07:54:42 -04:00
|
|
|
bpsnba = new BPSNBA (
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // bpsnba run flag
|
|
|
|
0, // run the notches
|
|
|
|
0, // position
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
std::max(2048, dsp_size), // number of filter coefficients
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // minimum phase flag
|
2024-08-03 07:54:42 -04:00
|
|
|
midbuff, // input buffer
|
|
|
|
midbuff, // output buffer
|
|
|
|
dsp_rate, // samplerate
|
2024-06-24 04:20:14 -04:00
|
|
|
+ 250.0, // abs value of cutoff nearest zero
|
|
|
|
+ 5700.0, // abs value of cutoff farthest zero
|
|
|
|
- 5700.0, // current low frequency
|
|
|
|
- 250.0, // current high frequency
|
|
|
|
0, // wintype
|
|
|
|
1.0, // gain
|
|
|
|
1, // auto-increase notch width
|
|
|
|
1025, // max number of passbands
|
2024-08-03 07:54:42 -04:00
|
|
|
ndb); // addr of database pointer
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Post filter display send - send spectrum display (after S-meter in the block diagram)
|
2024-08-03 07:54:42 -04:00
|
|
|
sender = new SENDER (
|
2024-06-16 05:31:13 -04:00
|
|
|
0, // run
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // flag
|
|
|
|
0, // mode
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
midbuff // pointer to input buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
// End notched bandpass section
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
// S-meter
|
2024-08-03 07:54:42 -04:00
|
|
|
smeter = new METER(
|
2024-06-24 04:20:14 -04:00
|
|
|
1, // run
|
2024-08-05 14:05:59 -04:00
|
|
|
nullptr, // optional pointer to another 'run'
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
midbuff, // pointer to buffer
|
|
|
|
dsp_rate, // samplerate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.100, // averaging time constant
|
|
|
|
0.100, // peak decay time constant
|
2024-08-05 14:05:59 -04:00
|
|
|
meter.data(), // result vector
|
2024-06-24 04:20:14 -04:00
|
|
|
RXA_S_AV, // index for average value
|
|
|
|
RXA_S_PK, // index for peak value
|
2024-07-12 21:53:57 -04:00
|
|
|
-1, // index for gain value - disabled
|
2024-08-05 14:05:59 -04:00
|
|
|
nullptr); // pointer for gain computation
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// AM squelch capture (for other modes than FM)
|
2024-08-03 07:54:42 -04:00
|
|
|
amsq = new AMSQ(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // pointer to signal input buffer used by xamsq
|
|
|
|
midbuff, // pointer to signal output buffer used by xamsq
|
|
|
|
midbuff, // pointer to trigger buffer that xamsqcap will capture
|
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.010, // time constant for averaging signal level
|
|
|
|
0.070, // signal up transition time
|
|
|
|
0.070, // signal down transition time
|
|
|
|
0.009, // signal level to initiate tail
|
|
|
|
0.010, // signal level to initiate unmute
|
|
|
|
0.000, // minimum tail length
|
|
|
|
1.500, // maximum tail length
|
|
|
|
0.0); // muted gain
|
|
|
|
|
|
|
|
// AM/SAM demodulator
|
2024-08-03 07:54:42 -04:00
|
|
|
amd = new AMD(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - OFF by default
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // mode: 0->AM, 1->SAM
|
|
|
|
1, // levelfade: 0->OFF, 1->ON
|
|
|
|
0, // sideband mode: 0->OFF
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
-2000.0, // minimum lock frequency
|
|
|
|
+2000.0, // maximum lock frequency
|
|
|
|
1.0, // zeta
|
|
|
|
250.0, // omegaN
|
|
|
|
0.02, // tauR
|
|
|
|
1.4); // tauI
|
|
|
|
|
|
|
|
// FM demodulator
|
2024-08-03 07:54:42 -04:00
|
|
|
fmd = new FMD(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
5000.0, // deviation
|
|
|
|
300.0, // f_low
|
|
|
|
3000.0, // f_high
|
|
|
|
-8000.0, // fmin
|
|
|
|
+8000.0, // fmax
|
|
|
|
1.0, // zeta
|
|
|
|
20000.0, // omegaN
|
|
|
|
0.02, // tau - for dc removal
|
|
|
|
0.5, // audio gain
|
|
|
|
1, // run tone filter
|
|
|
|
254.1, // ctcss frequency
|
2024-08-03 07:54:42 -04:00
|
|
|
std::max(2048, dsp_size), // # coefs for de-emphasis filter
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // min phase flag for de-emphasis filter
|
2024-08-03 07:54:42 -04:00
|
|
|
std::max(2048, dsp_size), // # coefs for audio cutoff filter
|
2024-06-24 04:20:14 -04:00
|
|
|
0); // min phase flag for audio cutoff filter
|
|
|
|
|
|
|
|
// FM squelch apply
|
2024-08-03 07:54:42 -04:00
|
|
|
fmsq = new FMSQ(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // pointer to input signal buffer
|
|
|
|
midbuff, // pointer to output signal buffer
|
|
|
|
fmd->audio.data(), // pointer to trigger buffer
|
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
5000.0, // cutoff freq for noise filter (Hz)
|
2024-08-03 07:54:42 -04:00
|
|
|
&fmd->pllpole, // pointer to pole frequency of the fmd pll (Hz)
|
2024-06-24 04:20:14 -04:00
|
|
|
0.100, // delay time after channel flush
|
|
|
|
0.001, // tau for noise averaging
|
|
|
|
0.100, // tau for long noise averaging
|
|
|
|
0.050, // signal up transition time
|
|
|
|
0.010, // signal down transition time
|
|
|
|
0.750, // noise level to initiate tail
|
|
|
|
0.562, // noise level to initiate unmute
|
|
|
|
0.000, // minimum tail time
|
2024-07-06 16:41:33 -04:00
|
|
|
0.100, // maximum tail time
|
2024-08-03 07:54:42 -04:00
|
|
|
std::max(2048, dsp_size), // number of coefficients for noise filter
|
2024-06-24 04:20:14 -04:00
|
|
|
0); // minimum phase flag
|
|
|
|
|
|
|
|
// Spectral noise blanker (SNB)
|
2024-08-03 07:54:42 -04:00
|
|
|
snba = new SNBA(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
midbuff, // input buffer
|
|
|
|
midbuff, // output buffer
|
|
|
|
dsp_rate, // input / output sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
12000, // internal processing sample rate
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
2024-06-24 04:20:14 -04:00
|
|
|
4, // overlap factor to use
|
|
|
|
256, // frame size to use; sized for 12K rate
|
|
|
|
64, // asize
|
|
|
|
2, // npasses
|
|
|
|
8.0, // k1
|
|
|
|
20.0, // k2
|
|
|
|
10, // b
|
|
|
|
2, // pre
|
|
|
|
2, // post
|
|
|
|
0.5, // pmultmin
|
|
|
|
200.0, // output resampler low cutoff
|
|
|
|
5400.0); // output resampler high cutoff
|
|
|
|
|
|
|
|
// Equalizer
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
std::array<float, 11> default_F = {0.0, 32.0, 63.0, 125.0, 250.0, 500.0, 1000.0, 2000.0, 4000.0, 8000.0, 16000.0};
|
|
|
|
std::array<float, 11> default_G = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0};
|
|
|
|
eqp = new EQP(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - OFF by default
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
std::max(2048, dsp_size), // number of filter coefficients
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // minimum phase flag
|
2024-08-03 07:54:42 -04:00
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
10, // number of frequencies
|
2024-08-03 07:54:42 -04:00
|
|
|
default_F.data(), // frequency vector
|
|
|
|
default_G.data(), // gain vector
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // cutoff mode
|
|
|
|
0, // wintype
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_rate); // sample rate
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Auto notch filter
|
2024-08-03 07:54:42 -04:00
|
|
|
anf = new ANF(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - OFF by default
|
|
|
|
0, // position
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-08-02 02:01:46 -04:00
|
|
|
ANF::ANF_DLINE_SIZE, // dline_size
|
2024-06-24 04:20:14 -04:00
|
|
|
64, // taps
|
|
|
|
16, // delay
|
|
|
|
0.0001, // two_mu
|
|
|
|
0.1, // gamma
|
|
|
|
1.0, // lidx
|
|
|
|
0.0, // lidx_min
|
|
|
|
200.0, // lidx_max
|
|
|
|
6.25e-12, // ngamma
|
|
|
|
6.25e-10, // den_mult
|
|
|
|
1.0, // lincr
|
|
|
|
3.0); // ldecr
|
|
|
|
|
|
|
|
// LMS noise reduction (ANR or "NR")
|
2024-08-03 07:54:42 -04:00
|
|
|
anr = new ANR(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - OFF by default
|
|
|
|
0, // position
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-08-02 02:01:46 -04:00
|
|
|
ANR::ANR_DLINE_SIZE, // dline_size
|
2024-06-24 04:20:14 -04:00
|
|
|
64, // taps
|
|
|
|
16, // delay
|
|
|
|
0.0001, // two_mu
|
|
|
|
0.1, // gamma
|
|
|
|
120.0, // lidx
|
|
|
|
120.0, // lidx_min
|
|
|
|
200.0, // lidx_max
|
|
|
|
0.001, // ngamma
|
|
|
|
6.25e-10, // den_mult
|
|
|
|
1.0, // lincr
|
|
|
|
3.0); // ldecr
|
|
|
|
|
|
|
|
// Spectral noise reduyction (EMNR or "NR2")
|
2024-08-03 07:54:42 -04:00
|
|
|
emnr = new EMNR(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
|
|
|
0, // position
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // input buffer
|
|
|
|
midbuff, // output buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
4096, // FFT size
|
|
|
|
4, // overlap
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_rate, // samplerate
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // window type
|
|
|
|
1.0, // gain
|
|
|
|
2, // gain method
|
|
|
|
0, // npe_method
|
|
|
|
1); // ae_run
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
// AGC
|
2024-08-03 07:54:42 -04:00
|
|
|
agc = new WCPAGC(
|
2024-06-24 04:20:14 -04:00
|
|
|
1, // run
|
|
|
|
3, // mode
|
|
|
|
1, // peakmode = envelope
|
2024-08-03 07:54:42 -04:00
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
|
|
|
dsp_size, // buffer size
|
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.001, // tau_attack
|
|
|
|
0.250, // tau_decay
|
|
|
|
4, // n_tau
|
|
|
|
10000.0, // max_gain
|
|
|
|
1.5, // var_gain
|
|
|
|
1000.0, // fixed_gain
|
|
|
|
1.0, // max_input
|
|
|
|
1.0, // out_target
|
|
|
|
0.250, // tau_fast_backaverage
|
|
|
|
0.005, // tau_fast_decay
|
|
|
|
5.0, // pop_ratio
|
|
|
|
1, // hang_enable
|
|
|
|
0.500, // tau_hang_backmult
|
|
|
|
0.250, // hangtime
|
|
|
|
0.250, // hang_thresh
|
|
|
|
0.100); // tau_hang_decay
|
|
|
|
|
|
|
|
// AGC meter
|
2024-08-03 07:54:42 -04:00
|
|
|
agcmeter = new METER(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-05 14:05:59 -04:00
|
|
|
nullptr, // optional pointer to another 'run'
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
midbuff, // pointer to buffer
|
|
|
|
dsp_rate, // samplerate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.100, // averaging time constant
|
|
|
|
0.100, // peak decay time constant
|
2024-08-05 14:05:59 -04:00
|
|
|
meter.data(), // result vector
|
2024-06-24 04:20:14 -04:00
|
|
|
RXA_AGC_AV, // index for average value
|
|
|
|
RXA_AGC_PK, // index for peak value
|
|
|
|
RXA_AGC_GAIN, // index for gain value
|
2024-08-03 07:54:42 -04:00
|
|
|
&agc->gain); // pointer for gain computation
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Bandpass filter - After spectral noise reduction in the block diagram
|
2024-08-03 07:54:42 -04:00
|
|
|
bp1 = new BANDPASS (
|
2024-06-24 04:20:14 -04:00
|
|
|
1, // run - used only with ( AM || ANF || ANR || EMNR)
|
|
|
|
0, // position
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
std::max(2048, dsp_size), // number of coefficients
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // flag for minimum phase
|
2024-08-03 07:54:42 -04:00
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
-4150.0, // lower filter frequency
|
|
|
|
-150.0, // upper filter frequency
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
1, // wintype
|
|
|
|
1.0); // gain
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Scope/phase display send - pull phase & scope display data
|
2024-08-03 07:54:42 -04:00
|
|
|
sip1 = new SIPHON(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - needed only for phase display
|
|
|
|
0, // position
|
|
|
|
0, // mode
|
|
|
|
0, // disp
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size of input buffer
|
|
|
|
midbuff, // input buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
4096, // number of samples to store
|
|
|
|
4096, // fft size for spectrum
|
|
|
|
0); // specmode
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// AM carrier block
|
2024-08-03 07:54:42 -04:00
|
|
|
cbl = new CBL(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - needed only if set to ON
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // mode
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.02); // tau
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// CW peaking filter
|
2024-08-03 07:54:42 -04:00
|
|
|
speak = new SPEAK(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // buffer size,
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
600.0, // center frequency
|
|
|
|
100.0, // bandwidth
|
|
|
|
2.0, // gain
|
|
|
|
4, // number of stages
|
|
|
|
1); // design
|
|
|
|
|
|
|
|
// Dolly filter (multiple peak filter) - default is 2 for RTTY
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
std::array<int, 2> def_enable = { 1, 1};
|
|
|
|
std::array<double, 2> def_freq = {2125.0, 2295.0};
|
|
|
|
std::array<double, 2> def_bw = { 75.0, 75.0};
|
|
|
|
std::array<double, 2> def_gain = { 1.0, 1.0};
|
|
|
|
mpeak = new MPEAK(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
2, // number of peaking filters
|
2024-08-03 07:54:42 -04:00
|
|
|
def_enable.data(), // enable vector
|
|
|
|
def_freq.data(), // frequency vector
|
|
|
|
def_bw.data(), // bandwidth vector
|
|
|
|
def_gain.data(), // gain vector
|
2024-06-24 04:20:14 -04:00
|
|
|
4 ); // number of stages
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// Syllabic squelch (Voice suelch) - Not in the block diagram
|
2024-08-03 07:54:42 -04:00
|
|
|
ssql = new SSQL(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
|
|
|
dsp_rate, // sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.070, // signal up transition time
|
|
|
|
0.070, // signal down transition time
|
|
|
|
0.0, // muted gain
|
|
|
|
0.1, // mute time-constant
|
|
|
|
0.1, // unmute time-constant
|
|
|
|
0.08, // window threshold
|
|
|
|
0.8197, // trigger threshold
|
|
|
|
2400, // ring size for f_to_v converter
|
|
|
|
2000.0); // max freq for f_to_v converter
|
|
|
|
|
|
|
|
// PatchPanel
|
2024-08-03 07:54:42 -04:00
|
|
|
panel = new PANEL(
|
2024-06-24 04:20:14 -04:00
|
|
|
1, // run
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
midbuff, // pointer to output buffer
|
2024-06-24 04:20:14 -04:00
|
|
|
4.0, // gain1
|
|
|
|
1.0, // gain2I
|
|
|
|
1.0, // gain2Q
|
|
|
|
3, // 3 for I and Q
|
|
|
|
0); // no copy
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
// AM squelch apply - absent but in the block diagram
|
|
|
|
|
|
|
|
// Output resampler
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpout = new RESAMPLE(
|
2024-06-24 04:20:14 -04:00
|
|
|
0, // run - will be turned ON below if needed
|
2024-08-03 07:54:42 -04:00
|
|
|
dsp_size, // input buffer size
|
|
|
|
midbuff, // pointer to input buffer
|
|
|
|
outbuff, // pointer to output buffer
|
|
|
|
dsp_rate, // input sample rate
|
|
|
|
out_rate, // output sample rate
|
2024-06-24 04:20:14 -04:00
|
|
|
0.0, // select cutoff automatically
|
|
|
|
0, // select ncoef automatically
|
|
|
|
1.0); // gain
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
// turn OFF / ON resamplers as needed
|
2024-08-03 07:54:42 -04:00
|
|
|
resCheck();
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
RXA::~RXA()
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
delete rsmpout;
|
|
|
|
delete panel;
|
|
|
|
delete ssql;
|
|
|
|
delete mpeak;
|
|
|
|
delete speak;
|
|
|
|
delete cbl;
|
|
|
|
delete sip1;
|
|
|
|
delete bp1;
|
|
|
|
delete agcmeter;
|
|
|
|
delete agc;
|
|
|
|
delete emnr;
|
|
|
|
delete anr;
|
|
|
|
delete anf;
|
|
|
|
delete eqp;
|
|
|
|
delete snba;
|
|
|
|
delete fmsq;
|
|
|
|
delete fmd;
|
|
|
|
delete amd;
|
|
|
|
delete amsq;
|
|
|
|
delete smeter;
|
|
|
|
delete sender;
|
|
|
|
delete bpsnba;
|
|
|
|
delete nbp0;
|
|
|
|
delete ndb;
|
|
|
|
delete adcmeter;
|
|
|
|
delete rsmpin;
|
|
|
|
delete shift;
|
|
|
|
delete nob;
|
|
|
|
delete anb;
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::flush()
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
Unit::flushBuffers();
|
|
|
|
anb->flush();
|
|
|
|
nob->flush();
|
|
|
|
shift->flush();
|
|
|
|
rsmpin->flush();
|
|
|
|
adcmeter->flush();
|
|
|
|
nbp0->flush();
|
|
|
|
bpsnba->flush();
|
|
|
|
sender->flush();
|
|
|
|
smeter->flush();
|
|
|
|
amsq->flush();
|
|
|
|
amd->flush();
|
|
|
|
fmd->flush();
|
|
|
|
fmsq->flush();
|
|
|
|
snba->flush();
|
|
|
|
eqp->flush();
|
|
|
|
anf->flush();
|
|
|
|
anr->flush();
|
|
|
|
emnr->flush();
|
|
|
|
agc->flush();
|
|
|
|
agcmeter->flush();
|
|
|
|
bp1->flush();
|
|
|
|
sip1->flush();
|
|
|
|
cbl->flush();
|
|
|
|
speak->flush();
|
|
|
|
mpeak->flush();
|
|
|
|
ssql->flush();
|
|
|
|
panel->flush();
|
|
|
|
rsmpout->flush();
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::execute()
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
anb->execute();
|
|
|
|
nob->execute();
|
|
|
|
shift->execute();
|
|
|
|
rsmpin->execute();
|
|
|
|
adcmeter->execute();
|
|
|
|
bpsnba->exec_in(0);
|
|
|
|
nbp0->execute(0);
|
|
|
|
smeter->execute();
|
|
|
|
sender->execute();
|
|
|
|
amsq->xcap();
|
|
|
|
bpsnba->exec_out(0);
|
|
|
|
amd->execute();
|
|
|
|
fmd->execute();
|
|
|
|
fmsq->execute();
|
|
|
|
bpsnba->exec_in(1);
|
|
|
|
bpsnba->exec_out(1);
|
|
|
|
snba->execute();
|
|
|
|
eqp->execute();
|
|
|
|
anf->execute(0);
|
|
|
|
anr->ANR::execute(0);
|
|
|
|
emnr->execute(0);
|
|
|
|
bp1->BANDPASS::execute(0);
|
|
|
|
agc->execute();
|
|
|
|
anf->execute(1);
|
|
|
|
anr->execute(1);
|
|
|
|
emnr->execute(1);
|
|
|
|
bp1->execute(1);
|
|
|
|
agcmeter->execute();
|
|
|
|
sip1->execute(0);
|
|
|
|
cbl->execute();
|
|
|
|
speak->execute();
|
|
|
|
mpeak->execute();
|
|
|
|
ssql->execute();
|
|
|
|
panel->execute();
|
|
|
|
amsq->execute();
|
|
|
|
rsmpout->execute();
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setInputSamplerate(int _in_rate)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
Unit::setBuffersInputSamplerate(_in_rate);
|
2024-06-29 14:03:13 -04:00
|
|
|
// anb
|
2024-08-03 07:54:42 -04:00
|
|
|
anb->setBuffers(inbuff, inbuff);
|
|
|
|
anb->setSize(dsp_insize);
|
|
|
|
anb->setSamplerate(in_rate);
|
2024-06-29 14:03:13 -04:00
|
|
|
// nob
|
2024-08-03 07:54:42 -04:00
|
|
|
nob->setBuffers(inbuff, inbuff);
|
|
|
|
nob->setSize(dsp_insize);
|
|
|
|
nob->setSamplerate(in_rate);
|
2024-06-16 05:31:13 -04:00
|
|
|
// shift
|
2024-08-03 07:54:42 -04:00
|
|
|
shift->setBuffers(inbuff, inbuff);
|
|
|
|
shift->setSize(dsp_insize);
|
|
|
|
shift->setSamplerate(in_rate);
|
2024-06-16 05:31:13 -04:00
|
|
|
// input resampler
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpin->setBuffers(inbuff, midbuff);
|
|
|
|
rsmpin->setSize(dsp_insize);
|
|
|
|
rsmpin->setInRate(in_rate);
|
|
|
|
resCheck();
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setOutputSamplerate(int _out_rate)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
Unit::setBuffersOutputSamplerate(_out_rate);
|
2024-06-16 05:31:13 -04:00
|
|
|
// output resampler
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpout->setBuffers(midbuff, outbuff);
|
|
|
|
rsmpout->setOutRate(out_rate);
|
|
|
|
resCheck();
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setDSPSamplerate(int _dsp_rate)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
Unit::setBuffersDSPSamplerate(_dsp_rate);
|
2024-06-29 14:03:13 -04:00
|
|
|
// anb
|
2024-08-03 07:54:42 -04:00
|
|
|
anb->setBuffers(inbuff, inbuff);
|
|
|
|
anb->setSize(dsp_insize);
|
2024-06-29 14:03:13 -04:00
|
|
|
// nob
|
2024-08-03 07:54:42 -04:00
|
|
|
nob->setBuffers(inbuff, inbuff);
|
|
|
|
nob->setSize(dsp_insize);
|
2024-06-16 05:31:13 -04:00
|
|
|
// shift
|
2024-08-03 07:54:42 -04:00
|
|
|
shift->setBuffers(inbuff, inbuff);
|
|
|
|
shift->setSize(dsp_insize);
|
2024-06-16 05:31:13 -04:00
|
|
|
// input resampler
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpin->setBuffers(inbuff, midbuff);
|
|
|
|
rsmpin->setSize(dsp_insize);
|
|
|
|
rsmpin->setOutRate(dsp_rate);
|
2024-06-16 05:31:13 -04:00
|
|
|
// dsp_rate blocks
|
2024-08-03 07:54:42 -04:00
|
|
|
adcmeter->setSamplerate(dsp_rate);
|
|
|
|
nbp0->setSamplerate(dsp_rate);
|
|
|
|
bpsnba->setSamplerate(dsp_rate);
|
|
|
|
smeter->setSamplerate(dsp_rate);
|
|
|
|
sender->setSamplerate(dsp_rate);
|
|
|
|
amsq->setSamplerate(dsp_rate);
|
|
|
|
amd->setSamplerate(dsp_rate);
|
|
|
|
fmd->setSamplerate(dsp_rate);
|
|
|
|
fmsq->setBuffers(midbuff, midbuff, fmd->audio.data());
|
|
|
|
fmsq->setSamplerate(dsp_rate);
|
|
|
|
// snba->setSamplerate(dsp_rate); SMBA removed
|
|
|
|
eqp->setSamplerate(dsp_rate);
|
|
|
|
anf->setSamplerate(dsp_rate);
|
|
|
|
anr->setSamplerate(dsp_rate);
|
|
|
|
emnr->setSamplerate(dsp_rate);
|
|
|
|
bp1->setSamplerate(dsp_rate);
|
|
|
|
agc->setSamplerate(dsp_rate);
|
|
|
|
agcmeter->setSamplerate(dsp_rate);
|
|
|
|
sip1->setSamplerate(dsp_rate);
|
|
|
|
cbl->setSamplerate(dsp_rate);
|
|
|
|
speak->setSamplerate(dsp_rate);
|
|
|
|
mpeak->setSamplerate(dsp_rate);
|
|
|
|
ssql->setSamplerate(dsp_rate);
|
|
|
|
panel->setSamplerate(dsp_rate);
|
2024-06-16 05:31:13 -04:00
|
|
|
// output resampler
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpout->setBuffers(midbuff, outbuff);
|
|
|
|
rsmpout->setInRate(dsp_rate);
|
|
|
|
resCheck();
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setDSPBuffsize(int _dsp_size)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
Unit::setBuffersDSPBuffsize(_dsp_size);
|
2024-06-29 14:03:13 -04:00
|
|
|
// anb
|
2024-08-03 07:54:42 -04:00
|
|
|
anb->setBuffers(inbuff, inbuff);
|
|
|
|
anb->setSize(dsp_insize);
|
2024-06-29 14:03:13 -04:00
|
|
|
// nob
|
2024-08-03 07:54:42 -04:00
|
|
|
nob->setBuffers(inbuff, inbuff);
|
|
|
|
nob->setSize(dsp_insize);
|
2024-06-16 05:31:13 -04:00
|
|
|
// shift
|
2024-08-03 07:54:42 -04:00
|
|
|
shift->setBuffers(inbuff, inbuff);
|
|
|
|
shift->setSize(dsp_insize);
|
2024-06-16 05:31:13 -04:00
|
|
|
// input resampler
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpin->setBuffers(inbuff, midbuff);
|
|
|
|
rsmpin->setSize(dsp_insize);
|
2024-06-16 05:31:13 -04:00
|
|
|
// dsp_size blocks
|
2024-08-03 07:54:42 -04:00
|
|
|
adcmeter->setBuffers(midbuff);
|
|
|
|
adcmeter->setSize(dsp_size);
|
|
|
|
nbp0->setBuffers(midbuff, midbuff);
|
|
|
|
nbp0->setSize(dsp_size);
|
|
|
|
bpsnba->setBuffers(midbuff, midbuff);
|
|
|
|
bpsnba->setSize(dsp_size);
|
|
|
|
smeter->setBuffers(midbuff);
|
|
|
|
smeter->setSize(dsp_size);
|
|
|
|
sender->setBuffers(midbuff);
|
|
|
|
sender->setSize(dsp_size);
|
|
|
|
amsq->setBuffers(midbuff, midbuff, midbuff);
|
|
|
|
amsq->setSize(dsp_size);
|
|
|
|
amd->setBuffers(midbuff, midbuff);
|
|
|
|
amd->setSize(dsp_size);
|
|
|
|
fmd->setBuffers(midbuff, midbuff);
|
|
|
|
fmd->setSize(dsp_size);
|
|
|
|
fmsq->setBuffers(midbuff, midbuff, fmd->audio.data());
|
|
|
|
fmsq->setSize(dsp_size);
|
|
|
|
snba->setBuffers(midbuff, midbuff);
|
|
|
|
snba->setSize(dsp_size);
|
|
|
|
eqp->setBuffers(midbuff, midbuff);
|
|
|
|
eqp->setSize(dsp_size);
|
|
|
|
anf->setBuffers(midbuff, midbuff);
|
|
|
|
anf->setSize(dsp_size);
|
|
|
|
anr->setBuffers(midbuff, midbuff);
|
|
|
|
anr->setSize(dsp_size);
|
|
|
|
emnr->setBuffers(midbuff, midbuff);
|
|
|
|
emnr->setSize(dsp_size);
|
|
|
|
bp1->setBuffers(midbuff, midbuff);
|
|
|
|
bp1->setSize(dsp_size);
|
|
|
|
agc->setBuffers(midbuff, midbuff);
|
|
|
|
agc->setSize(dsp_size);
|
|
|
|
agcmeter->setBuffers(midbuff);
|
|
|
|
agcmeter->setSize(dsp_size);
|
|
|
|
sip1->setBuffers(midbuff);
|
|
|
|
sip1->setSize(dsp_size);
|
|
|
|
cbl->setBuffers(midbuff, midbuff);
|
|
|
|
cbl->setSize(dsp_size);
|
|
|
|
speak->setBuffers(midbuff, midbuff);
|
|
|
|
speak->setSize(dsp_size);
|
|
|
|
mpeak->setBuffers(midbuff, midbuff);
|
|
|
|
mpeak->setSize(dsp_size);
|
|
|
|
ssql->setBuffers(midbuff, midbuff);
|
|
|
|
ssql->setSize(dsp_size);
|
|
|
|
panel->setBuffers(midbuff, midbuff);
|
|
|
|
panel->setSize(dsp_size);
|
2024-06-16 05:31:13 -04:00
|
|
|
// output resampler
|
2024-08-03 07:54:42 -04:00
|
|
|
rsmpout->setBuffers(midbuff, outbuff);
|
|
|
|
rsmpout->setSize(dsp_size);
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-06-24 04:20:14 -04:00
|
|
|
void RXA::setSpectrumProbe(BufferProbe *spectrumProbe)
|
|
|
|
{
|
2024-07-24 17:30:41 -04:00
|
|
|
sender->SetSpectrum(1, spectrumProbe);
|
2024-07-22 18:39:21 -04:00
|
|
|
sender->run = 1;
|
2024-06-24 04:20:14 -04:00
|
|
|
}
|
|
|
|
|
2024-06-16 05:31:13 -04:00
|
|
|
/********************************************************************************************************
|
|
|
|
* *
|
|
|
|
* RXA Mode & Filter Controls *
|
|
|
|
* *
|
|
|
|
********************************************************************************************************/
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setMode(int _mode)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
if (mode != _mode)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
int amd_run = (_mode == RXA_AM) || (_mode == RXA_SAM);
|
|
|
|
bpsnbaCheck (_mode, ndb->master_run);
|
2024-06-16 05:31:13 -04:00
|
|
|
bp1Check (
|
|
|
|
amd_run,
|
2024-08-03 07:54:42 -04:00
|
|
|
snba->run,
|
|
|
|
emnr->run,
|
|
|
|
anf->run,
|
|
|
|
anr->run
|
2024-06-24 04:20:14 -04:00
|
|
|
);
|
2024-08-03 07:54:42 -04:00
|
|
|
mode = _mode;
|
|
|
|
amd->run = 0;
|
|
|
|
fmd->run = 0;
|
2024-07-02 00:14:22 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
switch (_mode)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
|
|
|
case RXA_AM:
|
2024-08-03 07:54:42 -04:00
|
|
|
amd->run = 1;
|
|
|
|
amd->mode = 0;
|
2024-06-16 05:31:13 -04:00
|
|
|
break;
|
|
|
|
case RXA_SAM:
|
2024-08-03 07:54:42 -04:00
|
|
|
amd->run = 1;
|
|
|
|
amd->mode = 1;
|
2024-06-16 05:31:13 -04:00
|
|
|
break;
|
|
|
|
case RXA_DSB:
|
|
|
|
break;
|
|
|
|
case RXA_FM:
|
2024-08-03 07:54:42 -04:00
|
|
|
fmd->run = 1;
|
2024-06-16 05:31:13 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2024-07-02 00:14:22 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
bp1Set();
|
|
|
|
bpsnbaSet(); // update variables
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::resCheck()
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
|
|
|
// turn OFF/ON resamplers depending upon whether they're needed
|
2024-08-03 07:54:42 -04:00
|
|
|
RESAMPLE *a = rsmpin;
|
|
|
|
if (in_rate != dsp_rate)
|
2024-06-16 05:31:13 -04:00
|
|
|
a->run = 1;
|
|
|
|
else
|
|
|
|
a->run = 0;
|
2024-08-03 07:54:42 -04:00
|
|
|
a = rsmpout;
|
|
|
|
if (dsp_rate != out_rate)
|
2024-06-16 05:31:13 -04:00
|
|
|
a->run = 1;
|
|
|
|
else
|
|
|
|
a->run = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RXA::bp1Check (
|
|
|
|
int amd_run,
|
|
|
|
int snba_run,
|
|
|
|
int emnr_run,
|
|
|
|
int anf_run,
|
|
|
|
int anr_run
|
|
|
|
)
|
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
BANDPASS *a = bp1;
|
2024-06-24 21:50:48 -04:00
|
|
|
float gain;
|
2024-06-16 05:31:13 -04:00
|
|
|
if (amd_run ||
|
|
|
|
snba_run ||
|
|
|
|
emnr_run ||
|
|
|
|
anf_run ||
|
|
|
|
anr_run
|
|
|
|
)
|
|
|
|
gain = 2.0;
|
|
|
|
else
|
|
|
|
gain = 1.0;
|
|
|
|
if (a->gain != gain)
|
2024-07-29 18:45:32 -04:00
|
|
|
a->setGain(gain, 0);
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::bp1Set ()
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
BANDPASS *a = bp1;
|
2024-06-16 05:31:13 -04:00
|
|
|
int old = a->run;
|
2024-08-03 07:54:42 -04:00
|
|
|
if ((amd->run == 1) ||
|
|
|
|
(snba->run == 1) ||
|
|
|
|
(emnr->run == 1) ||
|
|
|
|
(anf->run == 1) ||
|
|
|
|
(anr->run == 1)
|
2024-06-16 05:31:13 -04:00
|
|
|
)
|
|
|
|
a->run = 1;
|
|
|
|
else
|
|
|
|
a->run = 0;
|
|
|
|
if (!old && a->run)
|
2024-07-29 18:45:32 -04:00
|
|
|
a->flush();
|
2024-08-06 00:26:53 -04:00
|
|
|
a->fircore->setUpdate();
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::bpsnbaCheck(int _mode, int _notch_run)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
|
|
|
// for BPSNBA: set run, position, freqs, run_notches
|
|
|
|
// call this upon change in RXA_mode, snba_run, notch_master_run
|
2024-08-03 07:54:42 -04:00
|
|
|
BPSNBA *a = bpsnba;
|
|
|
|
double f_low = 0.0;
|
|
|
|
double f_high = 0.0;
|
2024-06-16 05:31:13 -04:00
|
|
|
int run_notches = 0;
|
2024-08-03 07:54:42 -04:00
|
|
|
switch (_mode)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
|
|
|
case RXA_LSB:
|
|
|
|
case RXA_CWL:
|
|
|
|
case RXA_DIGL:
|
|
|
|
f_low = -a->abs_high_freq;
|
|
|
|
f_high = -a->abs_low_freq;
|
2024-08-03 07:54:42 -04:00
|
|
|
run_notches = _notch_run;
|
2024-06-16 05:31:13 -04:00
|
|
|
break;
|
|
|
|
case RXA_USB:
|
|
|
|
case RXA_CWU:
|
|
|
|
case RXA_DIGU:
|
|
|
|
f_low = +a->abs_low_freq;
|
|
|
|
f_high = +a->abs_high_freq;
|
2024-08-03 07:54:42 -04:00
|
|
|
run_notches = _notch_run;
|
2024-06-16 05:31:13 -04:00
|
|
|
break;
|
|
|
|
case RXA_AM:
|
|
|
|
case RXA_SAM:
|
|
|
|
case RXA_DSB:
|
|
|
|
case RXA_FM:
|
|
|
|
f_low = +a->abs_low_freq;
|
|
|
|
f_high = +a->abs_high_freq;
|
|
|
|
run_notches = 0;
|
|
|
|
break;
|
|
|
|
case RXA_DRM:
|
|
|
|
case RXA_SPEC:
|
2024-08-03 07:54:42 -04:00
|
|
|
break;
|
|
|
|
default:
|
2024-06-16 05:31:13 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// 'run' and 'position' are examined at run time; no filter changes required.
|
|
|
|
// Recalculate filter if frequencies OR 'run_notches' changed.
|
|
|
|
if ((a->f_low != f_low ) ||
|
|
|
|
(a->f_high != f_high ) ||
|
|
|
|
(a->run_notches != run_notches))
|
|
|
|
{
|
|
|
|
a->f_low = f_low;
|
|
|
|
a->f_high = f_high;
|
|
|
|
a->run_notches = run_notches;
|
|
|
|
// f_low, f_high, run_notches are needed for the filter recalculation
|
2024-08-03 07:54:42 -04:00
|
|
|
bpsnba->recalc_bpsnba_filter(0);
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::bpsnbaSet()
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
|
|
|
// for BPSNBA: set run, position, freqs, run_notches
|
|
|
|
// call this upon change in RXA_mode, snba_run, notch_master_run
|
2024-08-03 07:54:42 -04:00
|
|
|
BPSNBA *a = bpsnba;
|
|
|
|
switch (mode)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
|
|
|
case RXA_LSB:
|
|
|
|
case RXA_CWL:
|
|
|
|
case RXA_DIGL:
|
|
|
|
case RXA_USB:
|
|
|
|
case RXA_CWU:
|
|
|
|
case RXA_DIGU:
|
2024-08-03 07:54:42 -04:00
|
|
|
a->run = snba->run;
|
2024-06-16 05:31:13 -04:00
|
|
|
a->position = 0;
|
|
|
|
break;
|
|
|
|
case RXA_DSB:
|
2024-08-03 07:54:42 -04:00
|
|
|
case RXA_AM:
|
2024-06-16 05:31:13 -04:00
|
|
|
case RXA_FM:
|
2024-08-03 07:54:42 -04:00
|
|
|
a->run = snba->run;
|
2024-06-16 05:31:13 -04:00
|
|
|
a->position = 1;
|
|
|
|
break;
|
2024-08-03 07:54:42 -04:00
|
|
|
case RXA_SAM:
|
2024-06-16 05:31:13 -04:00
|
|
|
case RXA_DRM:
|
|
|
|
case RXA_SPEC:
|
|
|
|
a->run = 0;
|
|
|
|
break;
|
2024-08-03 07:54:42 -04:00
|
|
|
default:
|
|
|
|
break;
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
2024-08-06 00:26:53 -04:00
|
|
|
a->bpsnba->fircore->setUpdate();
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::updateNBPFiltersLightWeight()
|
2024-07-24 14:29:55 -04:00
|
|
|
{ // called when setting tune freq or shift freq
|
2024-08-03 07:54:42 -04:00
|
|
|
nbp0->calc_lightweight();
|
|
|
|
bpsnba->bpsnba->calc_lightweight();
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::updateNBPFilters()
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
NBP *a = nbp0;
|
|
|
|
BPSNBA *b = bpsnba;
|
2024-07-24 14:29:55 -04:00
|
|
|
if (a->fnfrun)
|
|
|
|
{
|
|
|
|
a->calc_impulse();
|
2024-08-10 06:21:04 -04:00
|
|
|
a->fircore->setImpulse(a->impulse, 1);
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
if (b->bpsnba->fnfrun)
|
|
|
|
{
|
2024-07-24 17:11:29 -04:00
|
|
|
b->recalc_bpsnba_filter(1);
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
int RXA::nbpAddNotch(int _notch, double _fcenter, double _fwidth, int _active)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
NOTCHDB *b = ndb;
|
|
|
|
int rval = b->addNotch(_notch, _fcenter, _fwidth, _active);
|
2024-07-24 14:29:55 -04:00
|
|
|
|
|
|
|
if (rval == 0) {
|
2024-08-03 07:54:42 -04:00
|
|
|
updateNBPFilters();
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
2024-08-05 14:05:59 -04:00
|
|
|
int RXA::nbpGetNotch(int _notch, double* _fcenter, double* _fwidth, int* _active) const
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
NOTCHDB *a = ndb;
|
|
|
|
int rval = a->getNotch(_notch, _fcenter, _fwidth, _active);
|
2024-07-24 14:29:55 -04:00
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
int RXA::nbpDeleteNotch(int _notch)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
NOTCHDB *a = ndb;
|
|
|
|
int rval = a->deleteNotch(_notch);
|
2024-07-24 14:29:55 -04:00
|
|
|
|
|
|
|
if (rval == 0) {
|
2024-08-03 07:54:42 -04:00
|
|
|
updateNBPFilters();
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
int RXA::nbpEditNotch(int _notch, double _fcenter, double _fwidth, int _active)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
NOTCHDB *a = ndb;
|
|
|
|
int rval = a->editNotch(_notch, _fcenter, _fwidth, _active);
|
2024-07-24 14:29:55 -04:00
|
|
|
|
|
|
|
if (rval == 0) {
|
2024-08-03 07:54:42 -04:00
|
|
|
updateNBPFilters();
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
2024-08-05 14:05:59 -04:00
|
|
|
void RXA::nbpGetNumNotches(int* _nnotches) const
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
const NOTCHDB *a = ndb;
|
|
|
|
a->getNumNotches(_nnotches);
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::nbpSetTuneFrequency(double _tunefreq)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
|
|
|
NOTCHDB *a;
|
2024-08-03 07:54:42 -04:00
|
|
|
a = ndb;
|
2024-07-24 14:29:55 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
if (_tunefreq != a->tunefreq)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
a->tunefreq = _tunefreq;
|
|
|
|
updateNBPFiltersLightWeight();
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::nbpSetShiftFrequency(double _shift)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
|
|
|
NOTCHDB *a;
|
2024-08-03 07:54:42 -04:00
|
|
|
a = ndb;
|
|
|
|
if (_shift != a->shift)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
a->shift = _shift;
|
|
|
|
updateNBPFiltersLightWeight();
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::nbpSetNotchesRun(int _run)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
NOTCHDB *a = ndb;
|
|
|
|
NBP *b = nbp0;
|
2024-07-24 14:29:55 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
if ( _run != a->master_run)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
a->master_run = _run; // update variables
|
2024-07-24 14:29:55 -04:00
|
|
|
b->fnfrun = a->master_run;
|
2024-08-03 07:54:42 -04:00
|
|
|
bpsnbaCheck(mode, _run);
|
2024-07-24 14:29:55 -04:00
|
|
|
b->calc_impulse(); // recalc nbp impulse response
|
2024-08-10 06:21:04 -04:00
|
|
|
b->fircore->setImpulse(b->impulse, 0); // calculate new filter masks
|
2024-08-03 07:54:42 -04:00
|
|
|
bpsnbaSet();
|
2024-08-06 00:26:53 -04:00
|
|
|
b->fircore->setUpdate(); // apply new filter masks
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::nbpSetWindow(int _wintype)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
|
|
|
NBP *a;
|
|
|
|
BPSNBA *b;
|
2024-08-03 07:54:42 -04:00
|
|
|
a = nbp0;
|
|
|
|
b = bpsnba;
|
2024-07-24 14:29:55 -04:00
|
|
|
|
2024-08-05 14:05:59 -04:00
|
|
|
if (a->wintype != _wintype)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
a->wintype = _wintype;
|
2024-07-24 14:29:55 -04:00
|
|
|
a->calc_impulse();
|
2024-08-10 06:21:04 -04:00
|
|
|
a->fircore->setImpulse(a->impulse, 1);
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
2024-08-05 14:05:59 -04:00
|
|
|
if (b->wintype != _wintype)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
b->wintype = _wintype;
|
2024-07-24 17:11:29 -04:00
|
|
|
b->recalc_bpsnba_filter(1);
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::nbpSetAutoIncrease(int _autoincr)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
|
|
|
NBP *a;
|
|
|
|
BPSNBA *b;
|
2024-08-03 07:54:42 -04:00
|
|
|
a = nbp0;
|
|
|
|
b = bpsnba;
|
2024-07-24 14:29:55 -04:00
|
|
|
|
2024-08-05 14:05:59 -04:00
|
|
|
if (a->autoincr != _autoincr)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
a->autoincr = _autoincr;
|
2024-07-24 14:29:55 -04:00
|
|
|
a->calc_impulse();
|
2024-08-10 06:21:04 -04:00
|
|
|
a->fircore->setImpulse(a->impulse, 1);
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
|
|
|
|
2024-08-05 14:05:59 -04:00
|
|
|
if (b->autoincr != _autoincr)
|
2024-07-24 14:29:55 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
b->autoincr = _autoincr;
|
2024-07-24 17:11:29 -04:00
|
|
|
b->recalc_bpsnba_filter(1);
|
2024-07-24 14:29:55 -04:00
|
|
|
}
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setAMDRun(int _run)
|
2024-07-26 11:52:34 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
if (amd->run != _run)
|
2024-07-26 11:52:34 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
bp1Check (
|
|
|
|
_run,
|
|
|
|
snba->run,
|
|
|
|
emnr->run,
|
|
|
|
anf->run,
|
|
|
|
anr->run
|
2024-07-26 11:52:34 -04:00
|
|
|
);
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
amd->run = _run;
|
|
|
|
bp1Set();
|
2024-07-26 11:52:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setSNBARun(int _run)
|
2024-07-26 23:32:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
SNBA *a = snba;
|
2024-07-26 23:32:45 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
if (a->run != _run)
|
2024-07-26 23:32:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
bpsnbaCheck(mode, ndb->master_run);
|
|
|
|
bp1Check(
|
|
|
|
amd->run,
|
|
|
|
_run,
|
|
|
|
emnr->run,
|
|
|
|
anf->run,
|
|
|
|
anr->run
|
2024-07-26 23:32:45 -04:00
|
|
|
);
|
2024-08-03 07:54:42 -04:00
|
|
|
a->run = _run;
|
|
|
|
bp1Set();
|
|
|
|
bpsnbaSet();
|
2024-07-26 23:32:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setANFRun(int _run)
|
2024-07-28 05:36:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
ANF *a = anf;
|
2024-07-28 05:36:45 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
if (a->run != _run)
|
2024-07-28 05:36:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
bp1Check (
|
|
|
|
amd->run,
|
|
|
|
snba->run,
|
|
|
|
emnr->run,
|
|
|
|
_run,
|
|
|
|
anr->run
|
2024-07-28 05:36:45 -04:00
|
|
|
);
|
2024-08-03 07:54:42 -04:00
|
|
|
a->run = _run;
|
|
|
|
bp1Set();
|
2024-07-29 02:57:02 -04:00
|
|
|
a->flush();
|
2024-07-28 05:36:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setANFPosition(int _position)
|
2024-07-29 02:57:02 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
anf->position = _position;
|
|
|
|
bp1->position = _position;
|
|
|
|
anf->flush();
|
2024-07-29 02:57:02 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setANRRun(int _run)
|
2024-07-28 05:36:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
ANR *a = anr;
|
2024-07-28 05:36:45 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
if (a->run != _run)
|
2024-07-28 05:36:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
bp1Check (
|
|
|
|
amd->run,
|
|
|
|
snba->run,
|
|
|
|
emnr->run,
|
|
|
|
anf->run,
|
|
|
|
_run
|
2024-07-28 05:36:45 -04:00
|
|
|
);
|
2024-08-03 07:54:42 -04:00
|
|
|
a->run = _run;
|
|
|
|
bp1Set();
|
2024-07-29 02:57:02 -04:00
|
|
|
a->flush();
|
2024-07-28 05:36:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setANRPosition(int _position)
|
2024-07-29 02:57:02 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
anr->position = _position;
|
|
|
|
bp1->position = _position;
|
|
|
|
anr->flush();
|
2024-07-29 02:57:02 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setEMNRRun(int _run)
|
2024-07-28 05:36:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
EMNR *a = emnr;
|
2024-07-28 05:36:45 -04:00
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
if (a->run != _run)
|
2024-07-28 05:36:45 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
bp1Check (
|
|
|
|
amd->run,
|
|
|
|
snba->run,
|
|
|
|
_run,
|
|
|
|
anf->run,
|
|
|
|
anr->run
|
2024-07-28 05:36:45 -04:00
|
|
|
);
|
2024-08-03 07:54:42 -04:00
|
|
|
a->run = _run;
|
|
|
|
bp1Set();
|
2024-07-28 05:36:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setEMNRPosition(int _position)
|
2024-07-29 02:57:02 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
emnr->position = _position;
|
|
|
|
bp1->position = _position;
|
2024-07-29 02:57:02 -04:00
|
|
|
}
|
|
|
|
|
2024-08-05 14:05:59 -04:00
|
|
|
void RXA::getAGCThresh(double *_thresh, double _size, double _rate) const
|
2024-07-29 17:31:43 -04:00
|
|
|
//for line on bandscope.
|
|
|
|
{
|
|
|
|
double noise_offset;
|
2024-08-03 07:54:42 -04:00
|
|
|
noise_offset = 10.0 * log10((nbp0->fhigh - nbp0->flow) * _size / _rate);
|
|
|
|
*_thresh = 20.0 * log10( agc->min_volts ) - noise_offset;
|
2024-07-29 17:31:43 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setAGCThresh(double _thresh, double _size, double _rate)
|
2024-07-29 17:31:43 -04:00
|
|
|
//for line on bandscope
|
|
|
|
{
|
|
|
|
double noise_offset;
|
2024-08-03 07:54:42 -04:00
|
|
|
noise_offset = 10.0 * log10((nbp0->fhigh - nbp0->flow) * _size / _rate);
|
|
|
|
agc->max_gain = agc->out_target / (agc->var_gain * pow (10.0, (_thresh + noise_offset) / 20.0));
|
|
|
|
agc->loadWcpAGC();
|
2024-07-29 17:31:43 -04:00
|
|
|
}
|
|
|
|
|
2024-06-16 05:31:13 -04:00
|
|
|
/********************************************************************************************************
|
|
|
|
* *
|
|
|
|
* Collectives *
|
|
|
|
* *
|
|
|
|
********************************************************************************************************/
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setPassband(float _f_low, float _f_high)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
bp1->setBandpassFreqs (_f_low, _f_high); // After spectral noise reduction ( AM || ANF || ANR || EMNR)
|
|
|
|
snba->setOutputBandwidth (_f_low, _f_high); // Spectral noise blanker (SNB)
|
|
|
|
nbp0->SetFreqs (_f_low, _f_high); // Notched bandpass
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setNC(int _nc)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
int oldstate = state;
|
|
|
|
nbp0->SetNC (_nc);
|
|
|
|
bpsnba->SetNC (_nc);
|
|
|
|
bp1->SetBandpassNC (_nc);
|
|
|
|
eqp->setNC (_nc);
|
|
|
|
fmsq->setNC (_nc);
|
|
|
|
fmd->setNCde (_nc);
|
|
|
|
fmd->setNCaud (_nc);
|
|
|
|
state = oldstate;
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
2024-08-03 07:54:42 -04:00
|
|
|
void RXA::setMP(int _mp)
|
2024-06-16 05:31:13 -04:00
|
|
|
{
|
2024-08-03 07:54:42 -04:00
|
|
|
nbp0->SetMP (_mp);
|
|
|
|
bpsnba->SetMP (_mp);
|
|
|
|
bp1->SetBandpassMP (_mp);
|
|
|
|
eqp->setMP (_mp);
|
|
|
|
fmsq->setMP (_mp);
|
|
|
|
fmd->setMPde (_mp);
|
|
|
|
fmd->setMPaud (_mp);
|
2024-06-16 05:31:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace WDSP
|