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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
/* -*- c++ -*- */
/*
* Copyright 2009-2012,2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "fll_band_edge_cc_impl.h"
#include <gnuradio/expj.h>
#include <gnuradio/io_signature.h>
#include <cstdio>
namespace gr {
namespace digital {
#define M_TWOPI (2 * M_PI)
float sinc(float x)
{
if (x == 0)
return 1;
else
return sin(M_PI * x) / (M_PI * x);
}
fll_band_edge_cc::sptr fll_band_edge_cc::make(float samps_per_sym,
float rolloff,
int filter_size,
float bandwidth)
{
return gnuradio::make_block_sptr<fll_band_edge_cc_impl>(
samps_per_sym, rolloff, filter_size, bandwidth);
}
static int ios[] = { sizeof(gr_complex), sizeof(float), sizeof(float), sizeof(float) };
static std::vector<int> iosig(ios, ios + sizeof(ios) / sizeof(int));
fll_band_edge_cc_impl::fll_band_edge_cc_impl(float samps_per_sym,
float rolloff,
int filter_size,
float bandwidth)
: sync_block("fll_band_edge_cc",
io_signature::make(1, 1, sizeof(gr_complex)),
io_signature::makev(1, 4, iosig)),
blocks::control_loop(
bandwidth, M_TWOPI * (2.0 / samps_per_sym), -M_TWOPI * (2.0 / samps_per_sym)),
d_updated(false)
{
// Initialize samples per symbol
if (samps_per_sym <= 0) {
throw std::out_of_range("fll_band_edge_cc: invalid number of sps. Must be > 0.");
}
d_sps = samps_per_sym;
// Initialize rolloff factor
if (rolloff < 0 || rolloff > 1.0) {
throw std::out_of_range(
"fll_band_edge_cc: invalid rolloff factor. Must be in [0,1].");
}
d_rolloff = rolloff;
// Initialize filter length
if (filter_size <= 0) {
throw std::out_of_range("fll_band_edge_cc: invalid filter size. Must be > 0.");
}
d_filter_size = filter_size;
// Build the band edge filters
design_filter(d_sps, d_rolloff, d_filter_size);
}
/*******************************************************************
SET FUNCTIONS
*******************************************************************/
void fll_band_edge_cc_impl::set_samples_per_symbol(float sps)
{
if (sps <= 0) {
throw std::out_of_range("fll_band_edge_cc: invalid number of sps. Must be > 0.");
}
d_sps = sps;
set_max_freq(M_TWOPI * (2.0 / sps));
set_min_freq(-M_TWOPI * (2.0 / sps));
design_filter(d_sps, d_rolloff, d_filter_size);
}
void fll_band_edge_cc_impl::set_rolloff(float rolloff)
{
if (rolloff < 0 || rolloff > 1.0) {
throw std::out_of_range(
"fll_band_edge_cc: invalid rolloff factor. Must be in [0,1].");
}
d_rolloff = rolloff;
design_filter(d_sps, d_rolloff, d_filter_size);
}
void fll_band_edge_cc_impl::set_filter_size(int filter_size)
{
if (filter_size <= 0) {
throw std::out_of_range("fll_band_edge_cc: invalid filter size. Must be > 0.");
}
d_filter_size = filter_size;
design_filter(d_sps, d_rolloff, d_filter_size);
}
/*******************************************************************
GET FUNCTIONS
*******************************************************************/
float fll_band_edge_cc_impl::samples_per_symbol() const { return d_sps; }
float fll_band_edge_cc_impl::rolloff() const { return d_rolloff; }
int fll_band_edge_cc_impl::filter_size() const { return d_filter_size; }
/*******************************************************************
*******************************************************************/
void fll_band_edge_cc_impl::design_filter(float samps_per_sym,
float rolloff,
int filter_size)
{
const int M = rintf(filter_size / samps_per_sym);
float power = 0;
// Create the baseband filter by adding two sincs together
std::vector<float> bb_taps;
for (int i = 0; i < filter_size; i++) {
float k = -M + i * 2.0 / samps_per_sym;
float tap = sinc(rolloff * k - 0.5) + sinc(rolloff * k + 0.5);
power += tap;
bb_taps.push_back(tap);
}
d_taps_lower.resize(filter_size);
d_taps_upper.resize(filter_size);
// Create the band edge filters by spinning the baseband
// filter up and down to the right places in frequency.
// Also, normalize the power in the filters
int N = (bb_taps.size() - 1.0) / 2.0;
for (int i = 0; i < filter_size; i++) {
float tap = bb_taps[i] / power;
float k = (-N + (int)i) / (2.0 * samps_per_sym);
gr_complex t1 = tap * gr_expj(-M_TWOPI * (1 + rolloff) * k);
gr_complex t2 = tap * gr_expj(M_TWOPI * (1 + rolloff) * k);
d_taps_lower[filter_size - i - 1] = t1;
d_taps_upper[filter_size - i - 1] = t2;
}
d_updated = true;
// Set the history to ensure enough input items for each filter
set_history(filter_size + 1);
d_filter_upper.reset(
new gr::filter::kernel::fir_filter_with_buffer_ccc(d_taps_upper));
d_filter_lower.reset(
new gr::filter::kernel::fir_filter_with_buffer_ccc(d_taps_lower));
}
void fll_band_edge_cc_impl::print_taps()
{
printf("Upper Band-edge: [");
for (const auto& tap : d_taps_upper) {
printf(" %.4e + %.4ej,", tap.real(), tap.imag());
}
printf("]\n\n");
printf("Lower Band-edge: [");
for (const auto& tap : d_taps_lower) {
printf(" %.4e + %.4ej,", tap.real(), tap.imag());
}
printf("]\n\n");
}
int fll_band_edge_cc_impl::work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items)
{
const gr_complex* in = (const gr_complex*)input_items[0];
gr_complex* out = (gr_complex*)output_items[0];
float* frq = NULL;
float* phs = NULL;
float* err = NULL;
if (output_items.size() == 4) {
frq = (float*)output_items[1];
phs = (float*)output_items[2];
err = (float*)output_items[3];
}
if (d_updated) {
d_updated = false;
return 0; // history requirements may have changed.
}
int i;
float error;
gr_complex nco_out;
gr_complex out_upper, out_lower;
for (i = 0; i < noutput_items; i++) {
nco_out = gr_expj(d_phase);
out[i] = in[i] * nco_out;
// Perform the dot product of the output with the filters
out_upper = d_filter_lower->filter(out[i]);
out_lower = d_filter_upper->filter(out[i]);
error = norm(out_lower) - norm(out_upper);
advance_loop(error);
phase_wrap();
frequency_limit();
if (output_items.size() == 4) {
frq[i] = d_freq;
phs[i] = d_phase;
err[i] = error;
}
}
return noutput_items;
}
} /* namespace digital */
} /* namespace gr */
|