mirror of
https://git.vladimir.cc/vladimir/wdsp.git
synced 2026-08-25 17:27:33 +00:00
Model the pair on fmd.c / fmmod.c, but with the parts that a 75 kHz
deviation forces:
- the demodulator discriminates with arg(x[n] * conj(x[n-1])) rather
than a PLL; an omegaN in the tens of kHz cannot track 75 kHz.
- emphasis is a one-pole RC (tau 75 us) on both ends, not fmd's 1/f
fc_impulse FIR. A 1/f FIR from f_low = 20 Hz would sit ~+57 dB at
20 Hz, where broadcast FM specifies flat below the corner.
- TXA_WFM leaves the shared preemph block off; wfmmod carries its own.
- wfmmod clamps bp_fc = deviation + f_high to 0.45 * samplerate, since
+/-90 kHz exceeds Nyquist at the rates the narrowband modes use.
Scope is mono: no 19 kHz pilot, no 38 kHz stereo subcarrier, no RDS.
Both mode enums are appended to so the ABI stays stable for clients.
The JNI bindings are deliberately left alone.
Verified against a wfmmod -> wfmd loopback: the discriminator is exact,
the dc-removal one-pole tracks |H_lp(f)| * ain * sdelta to ratio 1.000,
and a 700 + 1900 Hz two-tone comes back with THD+N ~ 3e-5 % at +/-37.5
kHz deviation. Note the demodulator aliases unless samplerate exceeds
2 * deviation * |aud|max, so 192 kHz is the practical floor.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
162 lines
4.5 KiB
C
162 lines
4.5 KiB
C
/* comm.h
|
|
|
|
This file is part of a program that implements a Software-Defined Radio.
|
|
|
|
Copyright (C) 2013, 2024, 2025 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
|
|
|
|
*/
|
|
|
|
#if defined(linux) || defined(__APPLE__)
|
|
#include <stdlib.h>
|
|
#include <pthread.h>
|
|
#include <semaphore.h>
|
|
#include <string.h>
|
|
#include "linux_port.h"
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include <Windows.h>
|
|
#include <process.h>
|
|
#include <intrin.h>
|
|
#endif
|
|
#include <math.h>
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
#ifdef _WIN32
|
|
#include <avrt.h>
|
|
#endif
|
|
#include "fftw3.h"
|
|
|
|
#include "amd.h"
|
|
#include "ammod.h"
|
|
#include "amsq.h"
|
|
#include "analyzer.h"
|
|
#include "anf.h"
|
|
#include "anr.h"
|
|
#include "apfshadow.h"
|
|
#include "bandpass.h"
|
|
#include "calcc.h"
|
|
#include "cblock.h"
|
|
#include "cfcomp.h"
|
|
#include "cfir.h"
|
|
#include "channel.h"
|
|
#include "cmath.h"
|
|
#include "compress.h"
|
|
#include "delay.h"
|
|
#include "dexp.h"
|
|
#include "div.h"
|
|
#include "doublepole.h"
|
|
#include "eer.h"
|
|
#include "emnr.h"
|
|
#include "rnnr.h" // NR3 + NR4 support
|
|
#include "sbnr.h" // NR3 + NR4 support
|
|
#include "emph.h"
|
|
#include "eq.h"
|
|
#include "fastmath.h"
|
|
#include "fcurve.h"
|
|
#include "fir.h"
|
|
#include "firmin.h"
|
|
#include "fmd.h"
|
|
#include "fmmod.h"
|
|
#include "fmsq.h"
|
|
#include "wfmd.h"
|
|
#include "wfmmod.h"
|
|
#include "gain.h"
|
|
#include "gaussian.h"
|
|
#include "gen.h"
|
|
#include "icfir.h"
|
|
#include "iir.h"
|
|
#include "impulse_cache.h"
|
|
#include "iobuffs.h"
|
|
#include "iqc.h"
|
|
#include "lmath.h"
|
|
#include "main.h"
|
|
#include "matchedCW.h"
|
|
#include "meter.h"
|
|
#include "meterlog10.h"
|
|
#include "nbp.h"
|
|
#include "nob.h"
|
|
#include "nobII.h"
|
|
#include "osctrl.h"
|
|
#include "patchpanel.h"
|
|
#include "resample.h"
|
|
#include "rmatch.h"
|
|
#include "RXA.h"
|
|
#include "sender.h"
|
|
#include "shift.h"
|
|
#include "siphon.h"
|
|
#include "slew.h"
|
|
#include "snb.h"
|
|
#include "ssql.h"
|
|
#include "syncbuffs.h"
|
|
#include "TXA.h"
|
|
#include "utilities.h"
|
|
#include "varsamp.h"
|
|
#include "wcpAGC.h"
|
|
|
|
// manage differences among consoles
|
|
#define _Thetis
|
|
|
|
// channel definitions
|
|
#define MAX_CHANNELS 32 // maximum number of supported channels
|
|
#define DSP_MULT 2 // number of dsp_buffsizes that are held in an iobuff pseudo-ring
|
|
#define INREAL float // data type for channel input buffer
|
|
#define OUTREAL float // data type for channel output buffer
|
|
|
|
// display definitions
|
|
#define dMAX_DISPLAYS 72 // maximum number of displays = max instances
|
|
#define dMAX_STITCH 4 // maximum number of sub-spans to stitch together
|
|
#define dMAX_NUM_FFT 1 // maximum number of ffts for an elimination
|
|
#define dMAX_PIXELS 16384 // maximum number of pixels that can be requested
|
|
#define dMAX_AVERAGE 60 // maximum number of pixel frames that will be window-averaged
|
|
#ifdef _Thetis
|
|
#define dINREAL double
|
|
#else
|
|
#define dINREAL float
|
|
#endif
|
|
#define dOUTREAL float
|
|
#define dSAMP_BUFF_MULT 2 // ratio of input sample buffer size to fft size (for overlap)
|
|
#define dNUM_PIXEL_BUFFS 3 // number of pixel output buffers
|
|
#define dMAX_M 1 // number of variables to calibrate
|
|
#define dMAX_N 100 // maximum number of frequencies at which to calibrate
|
|
#define dMAX_CAL_SETS 2 // maximum number of calibration data sets
|
|
#define dMAX_PIXOUTS 4 // maximum number of det/avg/outputs per display instance
|
|
|
|
// wisdom definitions
|
|
#define MAX_WISDOM_SIZE_DISPLAY 262144
|
|
#define MAX_WISDOM_SIZE_FILTER 262144 // was 32769
|
|
|
|
// math definitions
|
|
#define PI 3.1415926535897932
|
|
#define TWOPI 6.2831853071795864
|
|
|
|
// Non-aliasing qualifier for DSP buffers. Spelled __restrict rather than
|
|
// restrict because the JNI translation unit is compiled as -std=gnu89.
|
|
#if defined(__GNUC__) || defined(__clang__) || defined(_MSC_VER)
|
|
#define WDSP_RESTRICT __restrict
|
|
#else
|
|
#define WDSP_RESTRICT
|
|
#endif
|
|
|
|
// miscellaneous
|
|
typedef double complex[2];
|
|
#define PORT __declspec( dllexport )
|