2024-06-16 05:31:13 -04:00
|
|
|
/* ssql.h
|
|
|
|
|
|
|
|
This file is part of a program that implements a Software-Defined Radio.
|
|
|
|
|
|
|
|
Copyright (C) 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@pratt.one
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef wdsp_ssql_h
|
|
|
|
#define wdsp_ssql_h
|
|
|
|
|
2024-07-31 18:31:28 -04:00
|
|
|
#include <vector>
|
|
|
|
|
2024-06-16 05:31:13 -04:00
|
|
|
#include "export.h"
|
|
|
|
|
|
|
|
namespace WDSP {
|
|
|
|
|
|
|
|
class WDSP_API FTOV // Frequency to Voltage Converter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int run; // 0 => don't run; 1 => run
|
|
|
|
int size; // buffer size
|
|
|
|
int rate; // sample-rate
|
|
|
|
int rsize; // rate * time_to_fill_ring, e.g., 48K/s * 50ms = 2400
|
2024-07-05 21:25:41 -04:00
|
|
|
double fmax; // frequency (Hz) for full output, e.g., 2000 (Hz)
|
2024-07-31 18:31:28 -04:00
|
|
|
float* in; // pointer to the intput buffer for ftov
|
|
|
|
float* out; // pointer to the output buffer for ftov
|
|
|
|
std::vector<int> ring; // the ring
|
2024-06-16 05:31:13 -04:00
|
|
|
int rptr; // index into the ring
|
2024-07-05 21:25:41 -04:00
|
|
|
double inlast; // holds last sample from previous buffer
|
2024-06-16 05:31:13 -04:00
|
|
|
int rcount; // count of zero-crossings currently in the ring
|
2024-07-05 21:25:41 -04:00
|
|
|
double div; // divisor for 'rcount' to produce output of 1.0 at 'fmax'
|
|
|
|
double eps; // minimum input change to count as a signal edge transition
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-07-31 18:31:28 -04:00
|
|
|
FTOV(
|
|
|
|
int run,
|
|
|
|
int size,
|
|
|
|
int rate,
|
|
|
|
int rsize,
|
|
|
|
double fmax,
|
|
|
|
float* in,
|
|
|
|
float* out
|
|
|
|
);
|
|
|
|
FTOV(const FTOV&) = delete;
|
|
|
|
FTOV& operator=(FTOV& other) = delete;
|
|
|
|
~FTOV() = default;
|
|
|
|
|
|
|
|
void flush();
|
|
|
|
void execute();
|
2024-06-16 05:31:13 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class CBL;
|
|
|
|
class FTDV;
|
2024-07-30 19:37:17 -04:00
|
|
|
class DBQLP;
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
class WDSP_API SSQL // Syllabic Squelch
|
|
|
|
{
|
|
|
|
public:
|
2024-08-03 05:05:12 -04:00
|
|
|
enum class SSQLState
|
|
|
|
{
|
|
|
|
MUTED,
|
|
|
|
INCREASE,
|
|
|
|
UNMUTED,
|
|
|
|
DECREASE
|
|
|
|
};
|
2024-06-16 05:31:13 -04:00
|
|
|
int run; // 0 if squelch system is OFF; 1 if it's ON
|
|
|
|
int size; // size of input/output buffers
|
2024-06-24 21:50:48 -04:00
|
|
|
float* in; // squelch input signal buffer
|
|
|
|
float* out; // squelch output signal buffer
|
2024-06-16 05:31:13 -04:00
|
|
|
int rate; // sample rate
|
2024-08-03 05:05:12 -04:00
|
|
|
SSQLState state; // state machine control
|
2024-06-16 05:31:13 -04:00
|
|
|
int count; // count variable for raised cosine transitions
|
2024-07-05 21:25:41 -04:00
|
|
|
double tup; // time for turn-on transition
|
|
|
|
double tdown; // time for turn-off transition
|
2024-06-16 05:31:13 -04:00
|
|
|
int ntup; // number of samples for turn-on transition
|
|
|
|
int ntdown; // number of samples for turn-off transition
|
2024-08-03 05:05:12 -04:00
|
|
|
std::vector<double> cup; // coefficients for up-slew
|
|
|
|
std::vector<double> cdown; // coefficients for down-slew
|
2024-07-05 21:25:41 -04:00
|
|
|
double muted_gain; // audio gain while muted; 0.0 for complete silence
|
2024-06-24 21:50:48 -04:00
|
|
|
|
2024-08-03 05:05:12 -04:00
|
|
|
std::vector<float> b1; // buffer to hold output of dc-block function
|
|
|
|
std::vector<float> ibuff; // buffer containing only 'I' component
|
|
|
|
std::vector<float> ftovbuff; // buffer containing output of f to v converter
|
|
|
|
std::vector<float> lpbuff; // buffer containing output of low-pass filter
|
|
|
|
std::vector<int> wdbuff; // buffer containing output of window detector
|
2024-06-16 05:31:13 -04:00
|
|
|
CBL *dcbl; // pointer to DC Blocker data structure
|
|
|
|
FTOV *cvtr; // pointer to F to V Converter data structure
|
2024-07-30 19:37:17 -04:00
|
|
|
DBQLP *filt; // pointer to Bi-Quad Low-Pass Filter data structure
|
2024-06-16 05:31:13 -04:00
|
|
|
int ftov_rsize; // ring size for f_to_v converter
|
2024-07-05 21:25:41 -04:00
|
|
|
double ftov_fmax; // fmax for f_to_v converter
|
2024-06-16 05:31:13 -04:00
|
|
|
// window detector
|
2024-07-05 21:25:41 -04:00
|
|
|
double wdtau; // window detector time constant
|
|
|
|
double wdmult; // window detector time constant multiplier
|
|
|
|
double wdaverage; // average signal value
|
|
|
|
double wthresh; // window threshold above/below average
|
2024-06-16 05:31:13 -04:00
|
|
|
// trigger
|
2024-07-05 21:25:41 -04:00
|
|
|
double tr_thresh; // trigger threshold: 100K/(100K+22K)=0.8197
|
|
|
|
double tr_tau_unmute; // trigger unmute time-constant: (100K||220K)*10uF = 0.6875
|
|
|
|
double tr_ss_unmute; // trigger steady-state level for unmute: 100K/(100K+220K)=0.3125
|
|
|
|
double tr_tau_mute; // trigger mute time-constant: 220K*10uF = 2.2
|
|
|
|
double tr_ss_mute; // trigger steady-state level for mute: 1.0
|
|
|
|
double tr_voltage; // trigger voltage
|
|
|
|
double mute_mult; // multiplier for successive voltage calcs when muted
|
|
|
|
double unmute_mult; // multiplier for successive voltage calcs when unmuted
|
2024-08-03 05:05:12 -04:00
|
|
|
std::vector<int> tr_signal; // trigger signal, 0 or 1
|
2024-06-16 05:31:13 -04:00
|
|
|
|
2024-07-31 20:01:09 -04:00
|
|
|
SSQL(
|
2024-06-16 05:31:13 -04:00
|
|
|
int run,
|
|
|
|
int size,
|
2024-06-24 21:50:48 -04:00
|
|
|
float* in,
|
|
|
|
float* out,
|
2024-06-16 05:31:13 -04:00
|
|
|
int rate,
|
2024-07-05 21:25:41 -04:00
|
|
|
double tup,
|
|
|
|
double tdown,
|
|
|
|
double muted_gain,
|
|
|
|
double tau_mute,
|
|
|
|
double tau_unmute,
|
|
|
|
double wthresh,
|
|
|
|
double tr_thresh,
|
2024-06-16 05:31:13 -04:00
|
|
|
int rsize,
|
2024-07-05 21:25:41 -04:00
|
|
|
double fmax
|
2024-06-16 05:31:13 -04:00
|
|
|
);
|
2024-07-31 20:01:09 -04:00
|
|
|
SSQL(const SSQL&) = delete;
|
|
|
|
SSQL& operator=(const SSQL& other) = delete;
|
|
|
|
~SSQL();
|
|
|
|
|
|
|
|
void flush();
|
|
|
|
void execute();
|
|
|
|
void setBuffers(float* in, float* out);
|
|
|
|
void setSamplerate(int rate);
|
|
|
|
void setSize(int size);
|
2024-06-16 05:31:13 -04:00
|
|
|
// RXA Properties
|
2024-07-31 20:01:09 -04:00
|
|
|
void setRun(int run);
|
|
|
|
void setThreshold(double threshold);
|
|
|
|
void setTauMute(double tau_mute);
|
|
|
|
void setTauUnMute(double tau_unmute);
|
2024-06-16 05:31:13 -04:00
|
|
|
|
|
|
|
private:
|
2024-07-31 20:01:09 -04:00
|
|
|
void compute_slews();
|
|
|
|
void calc();
|
|
|
|
void decalc();
|
2024-06-16 05:31:13 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace WDSP
|
|
|
|
|
|
|
|
#endif
|