forked from gordonjcp/lysdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdr.h
84 lines (66 loc) · 2.33 KB
/
sdr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* lysdr Software Defined Radio
(C) 2010-2011 Gordon JC Pearce MM0YEQ and others
sdr.h
This file is part of lysdr.
lysdr 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
any later version.
lysdr 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 lysdr. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SDR_H
#define __SDR_H
#include <complex.h>
#include <gtk/gtk.h>
#include <fftw3.h>
#include "filter.h"
#define FIR_SIZE 1024
#define MAX_FIR_LEN 8*4096
enum fft_status {EMPTY, // fft_data is currently unused
FILLING, // now writing samples to this fft
READY}; // ready to perform fft
enum rx_mode { SDR_LSB, SDR_USB };
typedef struct {
fftw_complex *windowed;
fftw_complex *samples; // complex data for fft
fftw_complex *out;
fftw_complex *filter;
fftw_plan plan; // fft plan for fftw
fftw_plan htplan; // fft plan for fftw
fftw_plan htbplan; // fft plan for fftw
int index; // position of next fft sample
enum fft_status status; // whether the fft is busy
} fft_data_t;
typedef struct {
double complex *iqSample; // the array of incoming samples
double complex loVector; // local oscillator vector
double complex loPhase; // local oscillator phase angle (sets tuning)
gdouble *output; // pointer to output samples
GtkObject *tuning; // adjustment for tuning
GtkObject *lp_tune; // adjustment for filter lowpass
GtkObject *hp_tune; // adjustment for filter highpass
gint mode; // demodulator mode
gint centre_freq;
fft_data_t *fft;
gint fft_size;
filter_fir_t *filter;
// things to keep track of between callbacks
double complex dc_remove;
gfloat agc_gain;
gfloat agc_speed;
// jack parameters
guint size; // periodsize
guint sample_rate; // samplerate
} sdr_data_t;
sdr_data_t *sdr_new(gint fft_size);
int sdr_process(sdr_data_t *sdr);
void sdr_destroy(sdr_data_t *sdr);
void fft_setup(sdr_data_t *sdr);
void fft_teardown(sdr_data_t *sdr);
#endif
/* vim: set noexpandtab ai ts=4 sw=4 tw=4: */