wdsp/slew.c
Uladzimir Karpenka 89c8a0e2b5 first commit
2026-06-01 15:58:45 +03:00

193 lines
4.0 KiB
C

/* slew.c
This file is part of a program that implements a Software-Defined Radio.
Copyright (C) 2013, 2023 Warren Pratt, NR0V
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.h"
enum _USLEW
{
BEGIN,
WAIT,
UP,
ON
};
void calc_uslew (USLEW a)
{
int i;
double delta, theta;
a->runmode = 0;
a->state = BEGIN;
a->count = 0;
a->ndelup = (int)(a->tdelay * a->rate);
a->ntup = (int)(a->tupslew * a->rate);
a->cup = (double *) malloc0 ((a->ntup + 1) * sizeof (double));
delta = PI / (double)a->ntup;
theta = 0.0;
for (i = 0; i <= a->ntup; i++)
{
a->cup[i] = 0.5 * (1.0 - cos (theta));
theta += delta;
}
InterlockedBitTestAndReset (a->ch_upslew, 0);
}
void decalc_uslew (USLEW a)
{
_aligned_free (a->cup);
}
USLEW create_uslew (int channel, volatile long *ch_upslew, int size, double* in, double* out, double rate, double tdelay, double tupslew)
{
USLEW a = (USLEW)malloc0 (sizeof (uslew));
a->channel = channel;
a->ch_upslew = ch_upslew;
a->size = size;
a->in = in;
a->out = out;
a->rate = rate;
a->tdelay = tdelay;
a->tupslew = tupslew;
calc_uslew (a);
return a;
}
void destroy_uslew (USLEW a)
{
decalc_uslew (a);
_aligned_free (a);
}
void flush_uslew (USLEW a)
{
a->state = BEGIN;
a->runmode = 0;
InterlockedBitTestAndReset (a->ch_upslew, 0);
}
void xuslew (USLEW a)
{
if (!a->runmode && TXAUslewCheck (a->channel))
a->runmode = 1;
if (a->runmode && _InterlockedAnd (a->ch_upslew, 1))
{
int i;
double I, Q;
for (i = 0; i < a->size; i++)
{
I = a->in[2 * i + 0];
Q = a->in[2 * i + 1];
switch (a->state)
{
case BEGIN:
a->out[2 * i + 0] = 0.0;
a->out[2 * i + 1] = 0.0;
if ((I != 0.0) || (Q != 0.0))
{
if (a->ndelup > 0)
{
a->state = WAIT;
a->count = a->ndelup;
}
else if (a->ntup > 0)
{
a->state = UP;
a->count = a->ntup;
}
else
a->state = ON;
}
break;
case WAIT:
a->out[2 * i + 0] = 0.0;
a->out[2 * i + 1] = 0.0;
if (a->count-- == 0)
{
if (a->ntup > 0)
{
a->state = UP;
a->count = a->ntup;
}
else
a->state = ON;
}
break;
case UP:
a->out[2 * i + 0] = I * a->cup[a->ntup - a->count];
a->out[2 * i + 1] = Q * a->cup[a->ntup - a->count];
if (a->count-- == 0)
a->state = ON;
break;
case ON:
a->out[2 * i + 0] = I;
a->out[2 * i + 1] = Q;
InterlockedBitTestAndReset (a->ch_upslew, 0);
a->runmode = 0;
break;
}
}
}
else if (a->out != a->in)
memcpy (a->out, a->in, a->size * sizeof (complex));
}
void setBuffers_uslew (USLEW a, double* in, double* out)
{
a->in = in;
a->out = out;
}
void setSamplerate_uslew (USLEW a, int rate)
{
decalc_uslew (a);
a->rate = rate;
calc_uslew (a);
}
void setSize_uslew (USLEW a, int size)
{
a->size = size;
flush_uslew (a);
}
/********************************************************************************************************
* *
* TXA Properties *
* *
********************************************************************************************************/
PORT
void SetTXAuSlewTime (int channel, double time)
{
// NOTE: 'time' is in seconds
EnterCriticalSection (&ch[channel].csDSP);
USLEW a = txa[channel].uslew.p;
decalc_uslew (a);
a->tupslew = time;
calc_uslew (a);
LeaveCriticalSection (&ch[channel].csDSP);
}