1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-21 12:26:34 -04:00
sdrangel/wdsp/iqc.cpp

208 lines
5.5 KiB
C++
Raw Normal View History

2024-06-16 05:31:13 -04:00
/* iqc.c
This file is part of a program that implements a Software-Defined Radio.
Copyright (C) 2013, 2016 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 <thread>
#include <chrono>
#include "comm.hpp"
#include "iqc.hpp"
#include "TXA.hpp"
namespace WDSP {
2024-08-07 15:14:09 -04:00
void IQC::size_iqc()
2024-06-16 05:31:13 -04:00
{
int i;
2024-08-07 15:14:09 -04:00
t.resize(ints + 1);
for (i = 0; i <= ints; i++)
t[i] = (double)i / (double)ints;
2024-06-16 05:31:13 -04:00
for (i = 0; i < 2; i++)
{
2024-08-07 15:14:09 -04:00
cm[i].resize(ints * 4);
cc[i].resize(ints * 4);
cs[i].resize(ints * 4);
2024-06-16 05:31:13 -04:00
}
2024-08-07 15:14:09 -04:00
dog.cpi.resize(ints);
dog.count = 0;
dog.full_ints = 0;
}
void IQC::calc()
{
double delta;
double theta;
cset = 0;
count = 0;
state = IQCSTATE::RUN;
busy = 0;
ntup = (int)(tup * rate);
cup.resize(ntup + 1);
delta = PI / (double)ntup;
2024-06-16 05:31:13 -04:00
theta = 0.0;
2024-08-07 15:14:09 -04:00
for (int i = 0; i <= ntup; i++)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
cup[i] = 0.5 * (1.0 - cos (theta));
2024-06-16 05:31:13 -04:00
theta += delta;
}
2024-08-07 15:14:09 -04:00
size_iqc();
2024-06-16 05:31:13 -04:00
}
2024-08-07 15:14:09 -04:00
IQC::IQC(
int _run,
int _size,
float* _in,
float* _out,
double _rate,
int _ints,
double _tup,
int _spi
) :
run(_run),
size(_size),
in(_in),
out(_out),
rate(_rate),
ints(_ints),
tup(_tup)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
dog.spi = _spi;
calc();
2024-06-16 05:31:13 -04:00
}
2024-08-07 15:14:09 -04:00
void IQC::flush()
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
// Nothing to do
2024-06-16 05:31:13 -04:00
}
2024-08-07 15:14:09 -04:00
void IQC::execute()
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
if (run == 1)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
int k;
int icset;
int mset;
double I;
double Q;
double env;
double dx;
double ym;
double yc;
double ys;
double PRE0;
double PRE1;
for (int i = 0; i < size; i++)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
I = in[2 * i + 0];
Q = in[2 * i + 1];
2024-06-16 05:31:13 -04:00
env = sqrt (I * I + Q * Q);
2024-08-07 15:14:09 -04:00
if ((k = (int)(env * ints)) > ints - 1) k = ints - 1;
dx = env - t[k];
icset = cset;
ym = cm[icset][4 * k + 0] + dx * (cm[icset][4 * k + 1] + dx * (cm[icset][4 * k + 2] + dx * cm[icset][4 * k + 3]));
yc = cc[icset][4 * k + 0] + dx * (cc[icset][4 * k + 1] + dx * (cc[icset][4 * k + 2] + dx * cc[icset][4 * k + 3]));
ys = cs[icset][4 * k + 0] + dx * (cs[icset][4 * k + 1] + dx * (cs[icset][4 * k + 2] + dx * cs[icset][4 * k + 3]));
2024-06-16 05:31:13 -04:00
PRE0 = ym * (I * yc - Q * ys);
PRE1 = ym * (I * ys + Q * yc);
2024-08-07 15:14:09 -04:00
switch (state)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
case IQCSTATE::RUN:
if ((dog.cpi[k] != dog.spi) && (++dog.cpi[k] == dog.spi))
dog.full_ints++;
if (dog.full_ints == ints)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
++dog.count;
dog.full_ints = 0;
std::fill(dog.cpi.begin(), dog.cpi.end(), 0);
2024-06-16 05:31:13 -04:00
}
break;
2024-08-07 15:14:09 -04:00
case IQCSTATE::BEGIN:
PRE0 = (1.0 - cup[count]) * I + cup[count] * PRE0;
PRE1 = (1.0 - cup[count]) * Q + cup[count] * PRE1;
if (count++ == ntup)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
state = IQCSTATE::RUN;
count = 0;
busy = 0;
2024-06-16 05:31:13 -04:00
}
break;
2024-08-07 15:14:09 -04:00
case IQCSTATE::SWAP:
2024-06-16 05:31:13 -04:00
mset = 1 - cset;
2024-08-07 15:14:09 -04:00
ym = cm[mset][4 * k + 0] + dx * (cm[mset][4 * k + 1] + dx * (cm[mset][4 * k + 2] + dx * cm[mset][4 * k + 3]));
yc = cc[mset][4 * k + 0] + dx * (cc[mset][4 * k + 1] + dx * (cc[mset][4 * k + 2] + dx * cc[mset][4 * k + 3]));
ys = cs[mset][4 * k + 0] + dx * (cs[mset][4 * k + 1] + dx * (cs[mset][4 * k + 2] + dx * cs[mset][4 * k + 3]));
PRE0 = (1.0 - cup[count]) * ym * (I * yc - Q * ys) + cup[count] * PRE0;
PRE1 = (1.0 - cup[count]) * ym * (I * ys + Q * yc) + cup[count] * PRE1;
if (count++ == ntup)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
state = IQCSTATE::RUN;
count = 0;
busy = 0;
2024-06-16 05:31:13 -04:00
}
break;
2024-08-07 15:14:09 -04:00
case IQCSTATE::END:
PRE0 = (1.0 - cup[count]) * PRE0 + cup[count] * I;
PRE1 = (1.0 - cup[count]) * PRE1 + cup[count] * Q;
if (count++ == ntup)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
state = IQCSTATE::DONE;
count = 0;
busy = 0;
2024-06-16 05:31:13 -04:00
}
break;
2024-08-07 15:14:09 -04:00
case IQCSTATE::DONE:
2024-06-16 05:31:13 -04:00
PRE0 = I;
PRE1 = Q;
break;
}
2024-08-07 15:14:09 -04:00
out[2 * i + 0] = (float) PRE0;
out[2 * i + 1] = (float) PRE1;
2024-06-16 05:31:13 -04:00
}
}
2024-08-07 15:14:09 -04:00
else if (out != in)
std::copy( in, in + size * 2, out);
2024-06-16 05:31:13 -04:00
}
2024-08-07 15:14:09 -04:00
void IQC::setBuffers(float* _in, float* _out)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
in = _in;
out = _out;
2024-06-16 05:31:13 -04:00
}
2024-08-07 15:14:09 -04:00
void IQC::setSamplerate(int _rate)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
rate = _rate;
calc();
2024-06-16 05:31:13 -04:00
}
2024-08-07 15:14:09 -04:00
void IQC::setSize(int _size)
2024-06-16 05:31:13 -04:00
{
2024-08-07 15:14:09 -04:00
size = _size;
2024-06-16 05:31:13 -04:00
}
} // namespace WDSP