sdrangel/wdsp/dsphp.cpp

129 wiersze
3.2 KiB
C++
Czysty Zwykły widok Historia

2024-07-30 23:37:17 +00:00
/* iir.c
This file is part of a program that implements a Software-Defined Radio.
Copyright (C) 2014, 2022, 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 "dsphp.hpp"
#include "RXA.hpp"
#include "TXA.hpp"
namespace WDSP {
/********************************************************************************************************
* *
* Double Single-Pole High-Pass *
* *
********************************************************************************************************/
2024-07-31 22:31:28 +00:00
void DSPHP::calc()
2024-07-30 23:37:17 +00:00
{
double g;
2024-07-31 22:31:28 +00:00
x0.resize(nstages); // (float*)malloc0(nstages * sizeof(float));
x1.resize(nstages); // (float*)malloc0(nstages * sizeof(float));
y0.resize(nstages); // (float*)malloc0(nstages * sizeof(float));
y1.resize(nstages); // (float*)malloc0(nstages * sizeof(float));
g = exp(-TWOPI * fc / rate);
b0 = +0.5 * (1.0 + g);
b1 = -0.5 * (1.0 + g);
a1 = -g;
2024-07-30 23:37:17 +00:00
}
2024-07-31 22:31:28 +00:00
DSPHP::DSPHP(
int _run,
int _size,
float* _in,
float* _out,
double _rate,
double _fc,
int _nstages
)
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
run = _run;
size = _size;
in = _in;
out = _out;
rate = _rate;
fc = _fc;
nstages = _nstages;
calc();
2024-07-30 23:37:17 +00:00
}
2024-07-31 22:31:28 +00:00
void DSPHP::flush()
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
std::fill(x0.begin(), x0.end(), 0);
std::fill(x1.begin(), x1.end(), 0);
std::fill(y0.begin(), y0.end(), 0);
std::fill(y1.begin(), y1.end(), 0);
2024-07-30 23:37:17 +00:00
}
2024-07-31 22:31:28 +00:00
void DSPHP::execute()
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
if (run)
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
for (int i = 0; i < size; i++)
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
x0[0] = in[i];
2024-07-30 23:37:17 +00:00
2024-07-31 22:31:28 +00:00
for (int n = 0; n < nstages; n++)
2024-07-30 23:37:17 +00:00
{
if (n > 0)
2024-07-31 22:31:28 +00:00
x0[n] = y0[n - 1];
2024-07-30 23:37:17 +00:00
2024-07-31 22:31:28 +00:00
y0[n] = b0 * x0[n]
+ b1 * x1[n]
- a1 * y1[n];
y1[n] = y0[n];
x1[n] = x0[n];
2024-07-30 23:37:17 +00:00
}
2024-07-31 22:31:28 +00:00
out[i] = y0[nstages - 1];
2024-07-30 23:37:17 +00:00
}
}
2024-07-31 22:31:28 +00:00
else if (out != in)
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
std::copy(in, in + size, out);
2024-07-30 23:37:17 +00:00
}
}
2024-07-31 22:31:28 +00:00
void DSPHP::setBuffers(float* _in, float* _out)
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
in = _in;
out = _out;
2024-07-30 23:37:17 +00:00
}
2024-07-31 22:31:28 +00:00
void DSPHP::setSamplerate(int _rate)
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
rate = _rate;
calc();
2024-07-30 23:37:17 +00:00
}
2024-07-31 22:31:28 +00:00
void DSPHP::setSize(int _size)
2024-07-30 23:37:17 +00:00
{
2024-07-31 22:31:28 +00:00
size = _size;
2024-07-30 23:37:17 +00:00
}
} // namespace WDSP