blob: f846950fdb8be33534591443516e6e7bf1b6208f [file] [log] [blame]
dburgessb3a0ca42011-10-12 07:44:40 +00001/*
kurtis.heimerla198d452011-11-26 03:19:28 +00002* Copyright 2008, 2011 Free Software Foundation, Inc.
dburgessb3a0ca42011-10-12 07:44:40 +00003*
4* This software is distributed under the terms of the GNU Affero Public License.
5* See the COPYING file in the main directory for details.
6*
7* This use of this software may be subject to additional restrictions.
8* See the LEGAL file in the main directory for details.
9
10 This program is free software: you can redistribute it and/or modify
11 it under the terms of the GNU Affero General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU Affero General Public License for more details.
19
20 You should have received a copy of the GNU Affero General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
22
23*/
24
Thomas Tsou7e4e5362013-10-30 21:18:55 -040025#ifdef HAVE_CONFIG_H
26#include "config.h"
27#endif
28
dburgessb3a0ca42011-10-12 07:44:40 +000029#include "sigProcLib.h"
30#include "GSMCommon.h"
Alexander Chemeris954b1182015-06-04 15:39:41 -040031#include "Logger.h"
Tom Tsoud3253432016-03-06 03:08:01 -080032#include "Resampler.h"
dburgessb3a0ca42011-10-12 07:44:40 +000033
Thomas Tsou3eaae802013-08-20 19:31:14 -040034extern "C" {
35#include "convolve.h"
Thomas Tsou7e4e5362013-10-30 21:18:55 -040036#include "scale.h"
Thomas Tsou0a3dc4c2013-11-09 02:29:55 -050037#include "mult.h"
Thomas Tsou3eaae802013-08-20 19:31:14 -040038}
39
Thomas Tsou7e4e5362013-10-30 21:18:55 -040040using namespace GSM;
41
Thomas Tsouf79c4d02013-11-09 15:51:56 -060042#define TABLESIZE 1024
43#define DELAYFILTS 64
dburgessb3a0ca42011-10-12 07:44:40 +000044
Tom Tsou577cd022015-05-18 13:57:54 -070045/* Clipping detection threshold */
46#define CLIP_THRESH 30000.0f
47
dburgessb3a0ca42011-10-12 07:44:40 +000048/** Lookup tables for trigonometric approximation */
49float cosTable[TABLESIZE+1]; // add 1 element for wrap around
50float sinTable[TABLESIZE+1];
Thomas Tsou0e0e1f42013-11-09 22:08:51 -050051float sincTable[TABLESIZE+1];
dburgessb3a0ca42011-10-12 07:44:40 +000052
53/** Constants */
54static const float M_PI_F = (float)M_PI;
55static const float M_2PI_F = (float)(2.0*M_PI);
56static const float M_1_2PI_F = 1/M_2PI_F;
57
Thomas Tsouc1f7c422013-10-11 13:49:55 -040058/* Precomputed rotation vectors */
Tom Tsou2079a3c2016-03-06 00:58:56 -080059static signalVector *GMSKRotation4 = NULL;
60static signalVector *GMSKReverseRotation4 = NULL;
Thomas Tsouc1f7c422013-10-11 13:49:55 -040061static signalVector *GMSKRotation1 = NULL;
62static signalVector *GMSKReverseRotation1 = NULL;
dburgessb3a0ca42011-10-12 07:44:40 +000063
Thomas Tsouf79c4d02013-11-09 15:51:56 -060064/* Precomputed fractional delay filters */
65static signalVector *delayFilters[DELAYFILTS];
66
Tom Tsoud3253432016-03-06 03:08:01 -080067static Complex<float> psk8_table[8] = {
68 Complex<float>(-0.70710678, 0.70710678),
69 Complex<float>( 0.0, -1.0),
70 Complex<float>( 0.0, 1.0),
71 Complex<float>( 0.70710678, -0.70710678),
72 Complex<float>(-1.0, 0.0),
73 Complex<float>(-0.70710678, -0.70710678),
74 Complex<float>( 0.70710678, 0.70710678),
75 Complex<float>( 1.0, 0.0),
76};
77
78/* Downsampling filterbank - 4 SPS to 1 SPS */
79#define DOWNSAMPLE_IN_LEN 624
80#define DOWNSAMPLE_OUT_LEN 156
81
82static Resampler *dnsampler = NULL;
83static signalVector *dnsampler_in = NULL;
84
Thomas Tsoue5dcfc42013-08-20 16:27:12 -040085/*
Thomas Tsou3eaae802013-08-20 19:31:14 -040086 * RACH and midamble correlation waveforms. Store the buffer separately
87 * because we need to allocate it explicitly outside of the signal vector
88 * constructor. This is because C++ (prior to C++11) is unable to natively
89 * perform 16-byte memory alignment required by many SSE instructions.
Thomas Tsoue5dcfc42013-08-20 16:27:12 -040090 */
91struct CorrelationSequence {
Thomas Tsou3eaae802013-08-20 19:31:14 -040092 CorrelationSequence() : sequence(NULL), buffer(NULL)
Thomas Tsoue5dcfc42013-08-20 16:27:12 -040093 {
94 }
95
96 ~CorrelationSequence()
97 {
98 delete sequence;
Thomas Tsou3eaae802013-08-20 19:31:14 -040099 free(buffer);
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400100 }
101
dburgessb3a0ca42011-10-12 07:44:40 +0000102 signalVector *sequence;
Thomas Tsou3eaae802013-08-20 19:31:14 -0400103 void *buffer;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400104 float toa;
dburgessb3a0ca42011-10-12 07:44:40 +0000105 complex gain;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400106};
dburgessb3a0ca42011-10-12 07:44:40 +0000107
Thomas Tsou83e06892013-08-20 16:10:01 -0400108/*
Thomas Tsou3eaae802013-08-20 19:31:14 -0400109 * Gaussian and empty modulation pulses. Like the correlation sequences,
110 * store the runtime (Gaussian) buffer separately because of needed alignment
111 * for SSE instructions.
Thomas Tsou83e06892013-08-20 16:10:01 -0400112 */
113struct PulseSequence {
Tom Tsoud3253432016-03-06 03:08:01 -0800114 PulseSequence() : c0(NULL), c1(NULL), c0_inv(NULL), empty(NULL),
115 c0_buffer(NULL), c1_buffer(NULL), c0_inv_buffer(NULL)
Thomas Tsou83e06892013-08-20 16:10:01 -0400116 {
117 }
118
119 ~PulseSequence()
120 {
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800121 delete c0;
122 delete c1;
Tom Tsoud3253432016-03-06 03:08:01 -0800123 delete c0_inv;
Thomas Tsou83e06892013-08-20 16:10:01 -0400124 delete empty;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800125 free(c0_buffer);
126 free(c1_buffer);
Thomas Tsou83e06892013-08-20 16:10:01 -0400127 }
128
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800129 signalVector *c0;
130 signalVector *c1;
Tom Tsoud3253432016-03-06 03:08:01 -0800131 signalVector *c0_inv;
Thomas Tsou83e06892013-08-20 16:10:01 -0400132 signalVector *empty;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800133 void *c0_buffer;
134 void *c1_buffer;
Tom Tsoud3253432016-03-06 03:08:01 -0800135 void *c0_inv_buffer;
Thomas Tsou83e06892013-08-20 16:10:01 -0400136};
137
Tom Tsoud3253432016-03-06 03:08:01 -0800138static CorrelationSequence *gMidambles[] = {NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
139static CorrelationSequence *gEdgeMidambles[] = {NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
140static CorrelationSequence *gRACHSequence = NULL;
141static PulseSequence *GSMPulse1 = NULL;
142static PulseSequence *GSMPulse4 = NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000143
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400144void sigProcLibDestroy()
145{
dburgessb3a0ca42011-10-12 07:44:40 +0000146 for (int i = 0; i < 8; i++) {
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400147 delete gMidambles[i];
Tom Tsoud3253432016-03-06 03:08:01 -0800148 delete gEdgeMidambles[i];
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400149 gMidambles[i] = NULL;
Tom Tsoud3253432016-03-06 03:08:01 -0800150 gEdgeMidambles[i] = NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000151 }
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400152
Thomas Tsouf79c4d02013-11-09 15:51:56 -0600153 for (int i = 0; i < DELAYFILTS; i++) {
154 delete delayFilters[i];
155 delayFilters[i] = NULL;
156 }
157
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400158 delete GMSKRotation1;
159 delete GMSKReverseRotation1;
Tom Tsou2079a3c2016-03-06 00:58:56 -0800160 delete GMSKRotation4;
161 delete GMSKReverseRotation4;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400162 delete gRACHSequence;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400163 delete GSMPulse1;
Tom Tsou2079a3c2016-03-06 00:58:56 -0800164 delete GSMPulse4;
Tom Tsoud3253432016-03-06 03:08:01 -0800165 delete dnsampler;
166 delete dnsampler_in;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400167
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400168 GMSKRotation1 = NULL;
Tom Tsou2079a3c2016-03-06 00:58:56 -0800169 GMSKRotation4 = NULL;
170 GMSKReverseRotation4 = NULL;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400171 GMSKReverseRotation1 = NULL;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -0400172 gRACHSequence = NULL;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400173 GSMPulse1 = NULL;
Tom Tsou2079a3c2016-03-06 00:58:56 -0800174 GSMPulse4 = NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000175}
176
dburgessb3a0ca42011-10-12 07:44:40 +0000177// dB relative to 1.0.
178// if > 1.0, then return 0 dB
179float dB(float x) {
180
181 float arg = 1.0F;
182 float dB = 0.0F;
183
184 if (x >= 1.0F) return 0.0F;
185 if (x <= 0.0F) return -200.0F;
186
187 float prevArg = arg;
188 float prevdB = dB;
189 float stepSize = 16.0F;
190 float dBstepSize = 12.0F;
191 while (stepSize > 1.0F) {
192 do {
193 prevArg = arg;
194 prevdB = dB;
195 arg /= stepSize;
196 dB -= dBstepSize;
197 } while (arg > x);
198 arg = prevArg;
199 dB = prevdB;
200 stepSize *= 0.5F;
201 dBstepSize -= 3.0F;
202 }
203 return ((arg-x)*(dB-3.0F) + (x-arg*0.5F)*dB)/(arg - arg*0.5F);
204
205}
206
207// 10^(-dB/10), inverse of dB func.
208float dBinv(float x) {
209
210 float arg = 1.0F;
211 float dB = 0.0F;
212
213 if (x >= 0.0F) return 1.0F;
214 if (x <= -200.0F) return 0.0F;
215
216 float prevArg = arg;
217 float prevdB = dB;
218 float stepSize = 16.0F;
219 float dBstepSize = 12.0F;
220 while (stepSize > 1.0F) {
221 do {
222 prevArg = arg;
223 prevdB = dB;
224 arg /= stepSize;
225 dB -= dBstepSize;
226 } while (dB > x);
227 arg = prevArg;
228 dB = prevdB;
229 stepSize *= 0.5F;
230 dBstepSize -= 3.0F;
231 }
232
233 return ((dB-x)*(arg*0.5F)+(x-(dB-3.0F))*(arg))/3.0F;
234
235}
236
237float vectorNorm2(const signalVector &x)
238{
239 signalVector::const_iterator xPtr = x.begin();
240 float Energy = 0.0;
241 for (;xPtr != x.end();xPtr++) {
242 Energy += xPtr->norm2();
243 }
244 return Energy;
245}
246
247
248float vectorPower(const signalVector &x)
249{
250 return vectorNorm2(x)/x.size();
251}
252
253/** compute cosine via lookup table */
254float cosLookup(const float x)
255{
256 float arg = x*M_1_2PI_F;
257 while (arg > 1.0F) arg -= 1.0F;
258 while (arg < 0.0F) arg += 1.0F;
259
260 const float argT = arg*((float)TABLESIZE);
261 const int argI = (int)argT;
262 const float delta = argT-argI;
263 const float iDelta = 1.0F-delta;
264 return iDelta*cosTable[argI] + delta*cosTable[argI+1];
265}
266
267/** compute sine via lookup table */
268float sinLookup(const float x)
269{
270 float arg = x*M_1_2PI_F;
271 while (arg > 1.0F) arg -= 1.0F;
272 while (arg < 0.0F) arg += 1.0F;
273
274 const float argT = arg*((float)TABLESIZE);
275 const int argI = (int)argT;
276 const float delta = argT-argI;
277 const float iDelta = 1.0F-delta;
278 return iDelta*sinTable[argI] + delta*sinTable[argI+1];
279}
280
281
282/** compute e^(-jx) via lookup table. */
Tom Tsou2079a3c2016-03-06 00:58:56 -0800283static complex expjLookup(float x)
dburgessb3a0ca42011-10-12 07:44:40 +0000284{
285 float arg = x*M_1_2PI_F;
286 while (arg > 1.0F) arg -= 1.0F;
287 while (arg < 0.0F) arg += 1.0F;
288
289 const float argT = arg*((float)TABLESIZE);
290 const int argI = (int)argT;
291 const float delta = argT-argI;
292 const float iDelta = 1.0F-delta;
293 return complex(iDelta*cosTable[argI] + delta*cosTable[argI+1],
294 iDelta*sinTable[argI] + delta*sinTable[argI+1]);
295}
296
297/** Library setup functions */
Tom Tsou2079a3c2016-03-06 00:58:56 -0800298static void initTrigTables() {
dburgessb3a0ca42011-10-12 07:44:40 +0000299 for (int i = 0; i < TABLESIZE+1; i++) {
300 cosTable[i] = cos(2.0*M_PI*i/TABLESIZE);
301 sinTable[i] = sin(2.0*M_PI*i/TABLESIZE);
302 }
303}
304
Tom Tsou2079a3c2016-03-06 00:58:56 -0800305/*
306 * Initialize 4 sps and 1 sps rotation tables
307 */
308static void initGMSKRotationTables()
Thomas Tsoud24cc2c2013-08-20 15:41:45 -0400309{
Tom Tsou2079a3c2016-03-06 00:58:56 -0800310 size_t len1 = 157, len4 = 625;
311
312 GMSKRotation4 = new signalVector(len4);
313 GMSKReverseRotation4 = new signalVector(len4);
314 signalVector::iterator rotPtr = GMSKRotation4->begin();
315 signalVector::iterator revPtr = GMSKReverseRotation4->begin();
dburgessb3a0ca42011-10-12 07:44:40 +0000316 float phase = 0.0;
Tom Tsou2079a3c2016-03-06 00:58:56 -0800317 while (rotPtr != GMSKRotation4->end()) {
dburgessb3a0ca42011-10-12 07:44:40 +0000318 *rotPtr++ = expjLookup(phase);
319 *revPtr++ = expjLookup(-phase);
Tom Tsou2079a3c2016-03-06 00:58:56 -0800320 phase += M_PI_F / 2.0F / 4.0;
dburgessb3a0ca42011-10-12 07:44:40 +0000321 }
dburgessb3a0ca42011-10-12 07:44:40 +0000322
Tom Tsou2079a3c2016-03-06 00:58:56 -0800323 GMSKRotation1 = new signalVector(len1);
324 GMSKReverseRotation1 = new signalVector(len1);
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400325 rotPtr = GMSKRotation1->begin();
326 revPtr = GMSKReverseRotation1->begin();
327 phase = 0.0;
328 while (rotPtr != GMSKRotation1->end()) {
329 *rotPtr++ = expjLookup(phase);
330 *revPtr++ = expjLookup(-phase);
331 phase += M_PI_F / 2.0F;
Thomas Tsoue57004d2013-08-20 18:55:33 -0400332 }
dburgessb3a0ca42011-10-12 07:44:40 +0000333}
334
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400335static void GMSKRotate(signalVector &x, int sps)
336{
Thomas Tsou0a3dc4c2013-11-09 02:29:55 -0500337#if HAVE_NEON
338 size_t len;
339 signalVector *a, *b, *out;
340
341 a = &x;
342 out = &x;
343 len = out->size();
344
345 if (len == 157)
346 len--;
347
348 if (sps == 1)
349 b = GMSKRotation1;
350 else
Tom Tsou2079a3c2016-03-06 00:58:56 -0800351 b = GMSKRotation4;
Thomas Tsou0a3dc4c2013-11-09 02:29:55 -0500352
353 mul_complex((float *) out->begin(),
354 (float *) a->begin(),
355 (float *) b->begin(), len);
356#else
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400357 signalVector::iterator rotPtr, xPtr = x.begin();
358
359 if (sps == 1)
360 rotPtr = GMSKRotation1->begin();
361 else
Tom Tsou2079a3c2016-03-06 00:58:56 -0800362 rotPtr = GMSKRotation4->begin();
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400363
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500364 if (x.isReal()) {
dburgessb3a0ca42011-10-12 07:44:40 +0000365 while (xPtr < x.end()) {
366 *xPtr = *rotPtr++ * (xPtr->real());
367 xPtr++;
368 }
369 }
370 else {
371 while (xPtr < x.end()) {
372 *xPtr = *rotPtr++ * (*xPtr);
373 xPtr++;
374 }
375 }
Thomas Tsou0a3dc4c2013-11-09 02:29:55 -0500376#endif
dburgessb3a0ca42011-10-12 07:44:40 +0000377}
378
Tom Tsou2079a3c2016-03-06 00:58:56 -0800379static bool GMSKReverseRotate(signalVector &x, int sps)
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400380{
381 signalVector::iterator rotPtr, xPtr= x.begin();
382
383 if (sps == 1)
384 rotPtr = GMSKReverseRotation1->begin();
Tom Tsou2079a3c2016-03-06 00:58:56 -0800385 else if (sps == 4)
386 rotPtr = GMSKReverseRotation4->begin();
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400387 else
Tom Tsou2079a3c2016-03-06 00:58:56 -0800388 return false;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400389
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500390 if (x.isReal()) {
dburgessb3a0ca42011-10-12 07:44:40 +0000391 while (xPtr < x.end()) {
392 *xPtr = *rotPtr++ * (xPtr->real());
393 xPtr++;
394 }
395 }
396 else {
397 while (xPtr < x.end()) {
398 *xPtr = *rotPtr++ * (*xPtr);
399 xPtr++;
400 }
401 }
Tom Tsou2079a3c2016-03-06 00:58:56 -0800402
403 return true;
dburgessb3a0ca42011-10-12 07:44:40 +0000404}
405
Thomas Tsou3eaae802013-08-20 19:31:14 -0400406signalVector *convolve(const signalVector *x,
407 const signalVector *h,
408 signalVector *y,
Thomas Tsou3f32ab52013-11-15 16:32:54 -0500409 ConvType spanType, size_t start,
410 size_t len, size_t step, int offset)
dburgessb3a0ca42011-10-12 07:44:40 +0000411{
Thomas Tsou3f32ab52013-11-15 16:32:54 -0500412 int rc;
413 size_t head = 0, tail = 0;
Thomas Tsou3eaae802013-08-20 19:31:14 -0400414 bool alloc = false, append = false;
415 const signalVector *_x = NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000416
Thomas Tsou3eaae802013-08-20 19:31:14 -0400417 if (!x || !h)
dburgessb3a0ca42011-10-12 07:44:40 +0000418 return NULL;
419
Thomas Tsou3eaae802013-08-20 19:31:14 -0400420 switch (spanType) {
421 case START_ONLY:
422 start = 0;
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500423 head = h->size() - 1;
Thomas Tsou3eaae802013-08-20 19:31:14 -0400424 len = x->size();
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500425
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500426 if (x->getStart() < head)
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500427 append = true;
dburgessb3a0ca42011-10-12 07:44:40 +0000428 break;
Thomas Tsou3eaae802013-08-20 19:31:14 -0400429 case NO_DELAY:
430 start = h->size() / 2;
431 head = start;
432 tail = start;
433 len = x->size();
434 append = true;
435 break;
436 case CUSTOM:
437 if (start < h->size() - 1) {
438 head = h->size() - start;
439 append = true;
440 }
441 if (start + len > x->size()) {
442 tail = start + len - x->size();
443 append = true;
dburgessb3a0ca42011-10-12 07:44:40 +0000444 }
445 break;
446 default:
447 return NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000448 }
dburgessb3a0ca42011-10-12 07:44:40 +0000449
Thomas Tsou3eaae802013-08-20 19:31:14 -0400450 /*
451 * Error if the output vector is too small. Create the output vector
452 * if the pointer is NULL.
453 */
454 if (y && (len > y->size()))
455 return NULL;
456 if (!y) {
457 y = new signalVector(len);
458 alloc = true;
459 }
460
461 /* Prepend or post-pend the input vector if the parameters require it */
462 if (append)
463 _x = new signalVector(*x, head, tail);
464 else
465 _x = x;
466
467 /*
468 * Four convovle types:
469 * 1. Complex-Real (aligned)
470 * 2. Complex-Complex (aligned)
471 * 3. Complex-Real (!aligned)
472 * 4. Complex-Complex (!aligned)
473 */
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500474 if (h->isReal() && h->isAligned()) {
Thomas Tsou3eaae802013-08-20 19:31:14 -0400475 rc = convolve_real((float *) _x->begin(), _x->size(),
476 (float *) h->begin(), h->size(),
477 (float *) y->begin(), y->size(),
478 start, len, step, offset);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500479 } else if (!h->isReal() && h->isAligned()) {
Thomas Tsou3eaae802013-08-20 19:31:14 -0400480 rc = convolve_complex((float *) _x->begin(), _x->size(),
481 (float *) h->begin(), h->size(),
482 (float *) y->begin(), y->size(),
483 start, len, step, offset);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500484 } else if (h->isReal() && !h->isAligned()) {
Thomas Tsou3eaae802013-08-20 19:31:14 -0400485 rc = base_convolve_real((float *) _x->begin(), _x->size(),
486 (float *) h->begin(), h->size(),
487 (float *) y->begin(), y->size(),
488 start, len, step, offset);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500489 } else if (!h->isReal() && !h->isAligned()) {
Thomas Tsou3eaae802013-08-20 19:31:14 -0400490 rc = base_convolve_complex((float *) _x->begin(), _x->size(),
491 (float *) h->begin(), h->size(),
492 (float *) y->begin(), y->size(),
493 start, len, step, offset);
494 } else {
495 rc = -1;
496 }
497
498 if (append)
499 delete _x;
500
501 if (rc < 0) {
502 if (alloc)
503 delete y;
504 return NULL;
505 }
506
507 return y;
508}
dburgessb3a0ca42011-10-12 07:44:40 +0000509
Tom Tsoud3253432016-03-06 03:08:01 -0800510/*
511 * Generate static EDGE linear equalizer. This equalizer is not adaptive.
512 * Filter taps are generated from the inverted 1 SPS impulse response of
513 * the EDGE pulse shape captured after the downsampling filter.
514 */
515static bool generateInvertC0Pulse(PulseSequence *pulse)
516{
517 if (!pulse)
518 return false;
519
520 pulse->c0_inv_buffer = convolve_h_alloc(5);
521 pulse->c0_inv = new signalVector((complex *) pulse->c0_inv_buffer, 0, 5);
522 pulse->c0_inv->isReal(true);
523 pulse->c0_inv->setAligned(false);
524
525 signalVector::iterator xP = pulse->c0_inv->begin();
526 *xP++ = 0.15884;
527 *xP++ = -0.43176;
528 *xP++ = 1.00000;
529 *xP++ = -0.42608;
530 *xP++ = 0.14882;
531
532 return true;
533}
534
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400535static bool generateC1Pulse(int sps, PulseSequence *pulse)
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800536{
537 int len;
538
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400539 if (!pulse)
540 return false;
541
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800542 switch (sps) {
543 case 4:
544 len = 8;
545 break;
546 default:
547 return false;
548 }
549
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400550 pulse->c1_buffer = convolve_h_alloc(len);
551 pulse->c1 = new signalVector((complex *)
552 pulse->c1_buffer, 0, len);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500553 pulse->c1->isReal(true);
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800554
555 /* Enable alignment for SSE usage */
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400556 pulse->c1->setAligned(true);
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800557
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400558 signalVector::iterator xP = pulse->c1->begin();
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800559
560 switch (sps) {
561 case 4:
562 /* BT = 0.30 */
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400563 *xP++ = 0.0;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800564 *xP++ = 8.16373112e-03;
565 *xP++ = 2.84385729e-02;
566 *xP++ = 5.64158904e-02;
567 *xP++ = 7.05463553e-02;
568 *xP++ = 5.64158904e-02;
569 *xP++ = 2.84385729e-02;
570 *xP++ = 8.16373112e-03;
571 }
572
573 return true;
574}
575
Tom Tsou2079a3c2016-03-06 00:58:56 -0800576static PulseSequence *generateGSMPulse(int sps)
dburgessb3a0ca42011-10-12 07:44:40 +0000577{
Thomas Tsou83e06892013-08-20 16:10:01 -0400578 int len;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800579 float arg, avg, center;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400580 PulseSequence *pulse;
Thomas Tsou83e06892013-08-20 16:10:01 -0400581
Tom Tsoud3253432016-03-06 03:08:01 -0800582 if ((sps != 1) && (sps != 4))
583 return NULL;
584
Thomas Tsou83e06892013-08-20 16:10:01 -0400585 /* Store a single tap filter used for correlation sequence generation */
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400586 pulse = new PulseSequence();
587 pulse->empty = new signalVector(1);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500588 pulse->empty->isReal(true);
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400589 *(pulse->empty->begin()) = 1.0f;
Thomas Tsou83e06892013-08-20 16:10:01 -0400590
Thomas Tsou9ccd9f22013-08-21 13:59:52 -0400591 /*
592 * For 4 samples-per-symbol use a precomputed single pulse Laurent
593 * approximation. This should yields below 2 degrees of phase error at
594 * the modulator output. Use the existing pulse approximation for all
595 * other oversampling factors.
596 */
597 switch (sps) {
598 case 4:
599 len = 16;
600 break;
Tom Tsoud3253432016-03-06 03:08:01 -0800601 case 1:
Thomas Tsou9ccd9f22013-08-21 13:59:52 -0400602 default:
Tom Tsou2079a3c2016-03-06 00:58:56 -0800603 len = 4;
Thomas Tsou9ccd9f22013-08-21 13:59:52 -0400604 }
Thomas Tsou3eaae802013-08-20 19:31:14 -0400605
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400606 pulse->c0_buffer = convolve_h_alloc(len);
607 pulse->c0 = new signalVector((complex *) pulse->c0_buffer, 0, len);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500608 pulse->c0->isReal(true);
Thomas Tsou3eaae802013-08-20 19:31:14 -0400609
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800610 /* Enable alingnment for SSE usage */
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400611 pulse->c0->setAligned(true);
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800612
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400613 signalVector::iterator xP = pulse->c0->begin();
Thomas Tsou83e06892013-08-20 16:10:01 -0400614
Thomas Tsou9ccd9f22013-08-21 13:59:52 -0400615 if (sps == 4) {
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800616 *xP++ = 0.0;
Thomas Tsou9ccd9f22013-08-21 13:59:52 -0400617 *xP++ = 4.46348606e-03;
618 *xP++ = 2.84385729e-02;
619 *xP++ = 1.03184855e-01;
620 *xP++ = 2.56065552e-01;
621 *xP++ = 4.76375085e-01;
622 *xP++ = 7.05961177e-01;
623 *xP++ = 8.71291644e-01;
624 *xP++ = 9.29453645e-01;
625 *xP++ = 8.71291644e-01;
626 *xP++ = 7.05961177e-01;
627 *xP++ = 4.76375085e-01;
628 *xP++ = 2.56065552e-01;
629 *xP++ = 1.03184855e-01;
630 *xP++ = 2.84385729e-02;
631 *xP++ = 4.46348606e-03;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400632 generateC1Pulse(sps, pulse);
Thomas Tsou9ccd9f22013-08-21 13:59:52 -0400633 } else {
634 center = (float) (len - 1.0) / 2.0;
Thomas Tsou83e06892013-08-20 16:10:01 -0400635
Thomas Tsou9ccd9f22013-08-21 13:59:52 -0400636 /* GSM pulse approximation */
637 for (int i = 0; i < len; i++) {
638 arg = ((float) i - center) / (float) sps;
639 *xP++ = 0.96 * exp(-1.1380 * arg * arg -
640 0.527 * arg * arg * arg * arg);
641 }
dburgessb3a0ca42011-10-12 07:44:40 +0000642
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400643 avg = sqrtf(vectorNorm2(*pulse->c0) / sps);
644 xP = pulse->c0->begin();
645 for (int i = 0; i < len; i++)
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800646 *xP++ /= avg;
647 }
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400648
Tom Tsoud3253432016-03-06 03:08:01 -0800649 /*
650 * Current form of the EDGE equalization filter non-realizable at 4 SPS.
651 * Load the onto both 1 SPS and 4 SPS objects for convenience. Note that
652 * the EDGE demodulator downsamples to 1 SPS prior to equalization.
653 */
654 generateInvertC0Pulse(pulse);
655
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400656 return pulse;
dburgessb3a0ca42011-10-12 07:44:40 +0000657}
658
659signalVector* frequencyShift(signalVector *y,
660 signalVector *x,
661 float freq,
662 float startPhase,
663 float *finalPhase)
664{
665
666 if (!x) return NULL;
667
668 if (y==NULL) {
669 y = new signalVector(x->size());
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500670 y->isReal(x->isReal());
dburgessb3a0ca42011-10-12 07:44:40 +0000671 if (y==NULL) return NULL;
672 }
673
674 if (y->size() < x->size()) return NULL;
675
676 float phase = startPhase;
677 signalVector::iterator yP = y->begin();
678 signalVector::iterator xPEnd = x->end();
679 signalVector::iterator xP = x->begin();
680
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500681 if (x->isReal()) {
dburgessb3a0ca42011-10-12 07:44:40 +0000682 while (xP < xPEnd) {
683 (*yP++) = expjLookup(phase)*( (xP++)->real() );
684 phase += freq;
685 }
686 }
687 else {
688 while (xP < xPEnd) {
689 (*yP++) = (*xP++)*expjLookup(phase);
690 phase += freq;
Thomas Tsou34bbef72013-11-13 22:58:15 -0500691 if (phase > 2 * M_PI)
692 phase -= 2 * M_PI;
693 else if (phase < -2 * M_PI)
694 phase += 2 * M_PI;
dburgessb3a0ca42011-10-12 07:44:40 +0000695 }
696 }
697
698
699 if (finalPhase) *finalPhase = phase;
700
701 return y;
702}
703
704signalVector* reverseConjugate(signalVector *b)
705{
706 signalVector *tmp = new signalVector(b->size());
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500707 tmp->isReal(b->isReal());
dburgessb3a0ca42011-10-12 07:44:40 +0000708 signalVector::iterator bP = b->begin();
709 signalVector::iterator bPEnd = b->end();
710 signalVector::iterator tmpP = tmp->end()-1;
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500711 if (!b->isReal()) {
dburgessb3a0ca42011-10-12 07:44:40 +0000712 while (bP < bPEnd) {
713 *tmpP-- = bP->conj();
714 bP++;
715 }
716 }
717 else {
718 while (bP < bPEnd) {
719 *tmpP-- = bP->real();
720 bP++;
721 }
722 }
723
724 return tmp;
725}
726
Tom Tsoud3253432016-03-06 03:08:01 -0800727bool vectorSlicer(SoftVector *x)
728{
729 SoftVector::iterator xP = x->begin();
730 SoftVector::iterator xPEnd = x->end();
731 while (xP < xPEnd) {
732 *xP = 0.5 * (*xP + 1.0f);
733 if (*xP > 1.0)
734 *xP = 1.0;
735 if (*xP < 0.0)
736 *xP = 0.0;
737 xP++;
738 }
739 return true;
740}
741
742bool vectorSlicer(signalVector *x)
dburgessb3a0ca42011-10-12 07:44:40 +0000743{
744
745 signalVector::iterator xP = x->begin();
746 signalVector::iterator xPEnd = x->end();
747 while (xP < xPEnd) {
748 *xP = (complex) (0.5*(xP->real()+1.0F));
749 if (xP->real() > 1.0) *xP = 1.0;
750 if (xP->real() < 0.0) *xP = 0.0;
751 xP++;
752 }
753 return true;
754}
Thomas Tsou3eaae802013-08-20 19:31:14 -0400755
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800756static signalVector *rotateBurst(const BitVector &wBurst,
757 int guardPeriodLength, int sps)
758{
759 int burst_len;
760 signalVector *pulse, rotated, *shaped;
761 signalVector::iterator itr;
762
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400763 pulse = GSMPulse1->empty;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800764 burst_len = sps * (wBurst.size() + guardPeriodLength);
765 rotated = signalVector(burst_len);
766 itr = rotated.begin();
767
768 for (unsigned i = 0; i < wBurst.size(); i++) {
769 *itr = 2.0 * (wBurst[i] & 0x01) - 1.0;
770 itr += sps;
771 }
772
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400773 GMSKRotate(rotated, sps);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500774 rotated.isReal(false);
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800775
776 /* Dummy filter operation */
777 shaped = convolve(&rotated, pulse, NULL, START_ONLY);
778 if (!shaped)
779 return NULL;
780
781 return shaped;
782}
783
Tom Tsoud3253432016-03-06 03:08:01 -0800784static void rotateBurst2(signalVector &burst, double phase)
785{
786 Complex<float> rot = Complex<float>(cos(phase), sin(phase));
787
788 for (size_t i = 0; i < burst.size(); i++)
789 burst[i] = burst[i] * rot;
790}
791
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800792static signalVector *modulateBurstLaurent(const BitVector &bits,
793 int guard_len, int sps)
794{
795 int burst_len;
796 float phase;
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500797 signalVector *c0_pulse, *c1_pulse, *c0_burst;
798 signalVector *c1_burst, *c0_shaped, *c1_shaped;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800799 signalVector::iterator c0_itr, c1_itr;
800
801 /*
802 * Apply before and after bits to reduce phase error at burst edges.
803 * Make sure there is enough room in the burst to accomodate all bits.
804 */
805 if (guard_len < 4)
806 guard_len = 4;
807
Tom Tsou2079a3c2016-03-06 00:58:56 -0800808 c0_pulse = GSMPulse4->c0;
809 c1_pulse = GSMPulse4->c1;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800810
811 burst_len = sps * (bits.size() + guard_len);
812
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500813 c0_burst = new signalVector(burst_len, c0_pulse->size());
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500814 c0_burst->isReal(true);
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500815 c0_itr = c0_burst->begin();
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800816
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500817 c1_burst = new signalVector(burst_len, c1_pulse->size());
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500818 c1_burst->isReal(true);
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500819 c1_itr = c1_burst->begin();
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800820
821 /* Padded differential start bits */
Alexander Chemeris351fd762015-05-24 20:16:51 -0400822 *c0_itr = 2.0 * (0x01 & 0x01) - 1.0;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800823 c0_itr += sps;
824
825 /* Main burst bits */
826 for (unsigned i = 0; i < bits.size(); i++) {
827 *c0_itr = 2.0 * (bits[i] & 0x01) - 1.0;
828 c0_itr += sps;
829 }
830
831 /* Padded differential end bits */
832 *c0_itr = 2.0 * (0x01 & 0x01) - 1.0;
833
834 /* Generate C0 phase coefficients */
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500835 GMSKRotate(*c0_burst, sps);
Thomas Tsou20eb6d62013-11-09 14:30:41 -0500836 c0_burst->isReal(false);
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800837
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500838 c0_itr = c0_burst->begin();
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800839 c0_itr += sps * 2;
840 c1_itr += sps * 2;
841
842 /* Start magic */
843 phase = 2.0 * ((0x01 & 0x01) ^ (0x01 & 0x01)) - 1.0;
844 *c1_itr = *c0_itr * Complex<float>(0, phase);
845 c0_itr += sps;
846 c1_itr += sps;
847
848 /* Generate C1 phase coefficients */
849 for (unsigned i = 2; i < bits.size(); i++) {
850 phase = 2.0 * ((bits[i - 1] & 0x01) ^ (bits[i - 2] & 0x01)) - 1.0;
851 *c1_itr = *c0_itr * Complex<float>(0, phase);
852
853 c0_itr += sps;
854 c1_itr += sps;
855 }
856
857 /* End magic */
858 int i = bits.size();
859 phase = 2.0 * ((bits[i-1] & 0x01) ^ (bits[i-2] & 0x01)) - 1.0;
860 *c1_itr = *c0_itr * Complex<float>(0, phase);
861
862 /* Primary (C0) and secondary (C1) pulse shaping */
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500863 c0_shaped = convolve(c0_burst, c0_pulse, NULL, START_ONLY);
864 c1_shaped = convolve(c1_burst, c1_pulse, NULL, START_ONLY);
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800865
866 /* Sum shaped outputs into C0 */
867 c0_itr = c0_shaped->begin();
868 c1_itr = c1_shaped->begin();
869 for (unsigned i = 0; i < c0_shaped->size(); i++ )
870 *c0_itr++ += *c1_itr++;
871
Thomas Tsou6f4906e2013-11-09 02:40:18 -0500872 delete c0_burst;
873 delete c1_burst;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +0800874 delete c1_shaped;
875
876 return c0_shaped;
877}
878
Tom Tsoud3253432016-03-06 03:08:01 -0800879static signalVector *rotateEdgeBurst(const signalVector &symbols, int sps)
880{
881 signalVector *burst;
882 signalVector::iterator burst_itr;
883
884 burst = new signalVector(symbols.size() * sps);
885 burst_itr = burst->begin();
886
887 for (size_t i = 0; i < symbols.size(); i++) {
888 float phase = i * 3.0f * M_PI / 8.0f;
889 Complex<float> rot = Complex<float>(cos(phase), sin(phase));
890
891 *burst_itr = symbols[i] * rot;
892 burst_itr += sps;
893 }
894
895 return burst;
896}
897
898static signalVector *derotateEdgeBurst(const signalVector &symbols, int sps)
899{
900 signalVector *burst;
901 signalVector::iterator burst_itr;
902
903 if (symbols.size() % sps)
904 return NULL;
905
906 burst = new signalVector(symbols.size() / sps);
907 burst_itr = burst->begin();
908
909 for (size_t i = 0; i < burst->size(); i++) {
910 float phase = (float) (i % 16) * 3.0f * M_PI / 8.0f;
911 Complex<float> rot = Complex<float>(cosf(phase), -sinf(phase));
912
913 *burst_itr = symbols[sps * i] * rot;
914 burst_itr++;
915 }
916
917 return burst;
918}
919
920static signalVector *mapEdgeSymbols(const BitVector &bits)
921{
922 if (bits.size() % 3)
923 return NULL;
924
925 signalVector *symbols = new signalVector(bits.size() / 3);
926
927 for (size_t i = 0; i < symbols->size(); i++) {
928 unsigned index = (((unsigned) bits[3 * i + 0] & 0x01) << 0) |
929 (((unsigned) bits[3 * i + 1] & 0x01) << 1) |
930 (((unsigned) bits[3 * i + 2] & 0x01) << 2);
931
932 (*symbols)[i] = psk8_table[index];
933 }
934
935 return symbols;
936}
937
938static signalVector *shapeEdgeBurst(const signalVector &symbols)
939{
940 size_t nsyms, nsamps = 625;
941 signalVector *burst, *shape;
942 signalVector::iterator burst_itr;
943
944 nsyms = symbols.size();
945
946 if (nsyms * 4 > nsamps)
947 nsyms = 156;
948
949 burst = new signalVector(nsamps, GSMPulse4->c0->size());
950 burst_itr = burst->begin();
951
952 for (size_t i = 0; i < nsyms; i++) {
953 float phase = i * 3.0f * M_PI / 8.0f;
954 Complex<float> rot = Complex<float>(cos(phase), sin(phase));
955
956 *burst_itr = symbols[i] * rot;
957 burst_itr += 4;
958 }
959
960 /* Single Gaussian pulse approximation shaping */
961 shape = convolve(burst, GSMPulse4->c0, NULL, START_ONLY);
962 delete burst;
963
964 return shape;
965}
966
967/*
968 * Generate a random 8-PSK EDGE burst. Only 4 SPS is supported with
969 * the returned burst being 625 samples in length.
970 */
971signalVector *generateEdgeBurst(int tsc)
972{
973 int tail = 9 / 3;
974 int data = 174 / 3;
975 int train = 78 / 3;
976
977 if ((tsc < 0) || (tsc > 7))
978 return NULL;
979
980 signalVector *shape, *burst = new signalVector(148);
981 const BitVector *midamble = &gEdgeTrainingSequence[tsc];
982
983 /* Tail */
984 int n, i = 0;
985 for (; i < tail; i++)
986 (*burst)[i] = psk8_table[7];
987
988 /* Body */
989 for (; i < tail + data; i++)
990 (*burst)[i] = psk8_table[rand() % 8];
991
992 /* TSC */
993 for (n = 0; i < tail + data + train; i++, n++) {
994 unsigned index = (((unsigned) (*midamble)[3 * n + 0] & 0x01) << 0) |
995 (((unsigned) (*midamble)[3 * n + 1] & 0x01) << 1) |
996 (((unsigned) (*midamble)[3 * n + 2] & 0x01) << 2);
997
998 (*burst)[i] = psk8_table[index];
999 }
1000
1001 /* Body */
1002 for (; i < tail + data + train + data; i++)
1003 (*burst)[i] = psk8_table[rand() % 8];
1004
1005 /* Tail */
1006 for (; i < tail + data + train + data + tail; i++)
1007 (*burst)[i] = psk8_table[7];
1008
1009 shape = shapeEdgeBurst(*burst);
1010 delete burst;
1011
1012 return shape;
1013}
1014
1015/*
1016 * Modulate 8-PSK burst. When empty pulse shaping (rotation only)
1017 * is enabled, the output vector length will be bit sequence length
1018 * times the SPS value. When pulse shaping is enabled, the output
1019 * vector length is fixed at 625 samples (156.25 sybols at 4 SPS).
1020 * Pulse shaped bit sequences that go beyond one burst are truncated.
1021 * Pulse shaping at anything but 4 SPS is not supported.
1022 */
1023signalVector *modulateEdgeBurst(const BitVector &bits,
1024 int sps, bool empty)
1025{
1026 signalVector *shape, *burst;
1027
1028 if ((sps != 4) && !empty)
1029 return NULL;
1030
1031 burst = mapEdgeSymbols(bits);
1032 if (!burst)
1033 return NULL;
1034
1035 if (empty)
1036 shape = rotateEdgeBurst(*burst, sps);
1037 else
1038 shape = shapeEdgeBurst(*burst);
1039
1040 delete burst;
1041 return shape;
1042}
1043
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001044static signalVector *modulateBurstBasic(const BitVector &bits,
1045 int guard_len, int sps)
1046{
1047 int burst_len;
Thomas Tsou6f4906e2013-11-09 02:40:18 -05001048 signalVector *pulse, *burst, *shaped;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001049 signalVector::iterator burst_itr;
1050
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001051 if (sps == 1)
1052 pulse = GSMPulse1->c0;
1053 else
Tom Tsou2079a3c2016-03-06 00:58:56 -08001054 pulse = GSMPulse4->c0;
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001055
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001056 burst_len = sps * (bits.size() + guard_len);
1057
Thomas Tsou6f4906e2013-11-09 02:40:18 -05001058 burst = new signalVector(burst_len, pulse->size());
Thomas Tsou20eb6d62013-11-09 14:30:41 -05001059 burst->isReal(true);
Thomas Tsou6f4906e2013-11-09 02:40:18 -05001060 burst_itr = burst->begin();
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001061
1062 /* Raw bits are not differentially encoded */
1063 for (unsigned i = 0; i < bits.size(); i++) {
1064 *burst_itr = 2.0 * (bits[i] & 0x01) - 1.0;
1065 burst_itr += sps;
1066 }
1067
Thomas Tsou6f4906e2013-11-09 02:40:18 -05001068 GMSKRotate(*burst, sps);
Thomas Tsou20eb6d62013-11-09 14:30:41 -05001069 burst->isReal(false);
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001070
1071 /* Single Gaussian pulse approximation shaping */
Thomas Tsou6f4906e2013-11-09 02:40:18 -05001072 shaped = convolve(burst, pulse, NULL, START_ONLY);
1073
1074 delete burst;
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001075
1076 return shaped;
1077}
1078
Thomas Tsou3eaae802013-08-20 19:31:14 -04001079/* Assume input bits are not differentially encoded */
Thomas Tsou83e06892013-08-20 16:10:01 -04001080signalVector *modulateBurst(const BitVector &wBurst, int guardPeriodLength,
1081 int sps, bool emptyPulse)
dburgessb3a0ca42011-10-12 07:44:40 +00001082{
Thomas Tsou83e06892013-08-20 16:10:01 -04001083 if (emptyPulse)
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001084 return rotateBurst(wBurst, guardPeriodLength, sps);
1085 else if (sps == 4)
1086 return modulateBurstLaurent(wBurst, guardPeriodLength, sps);
Thomas Tsou83e06892013-08-20 16:10:01 -04001087 else
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001088 return modulateBurstBasic(wBurst, guardPeriodLength, sps);
dburgessb3a0ca42011-10-12 07:44:40 +00001089}
1090
Tom Tsou2079a3c2016-03-06 00:58:56 -08001091static void generateSincTable()
Thomas Tsou0e0e1f42013-11-09 22:08:51 -05001092{
1093 float x;
1094
1095 for (int i = 0; i < TABLESIZE; i++) {
1096 x = (float) i / TABLESIZE * 8 * M_PI;
1097 if (fabs(x) < 0.01) {
1098 sincTable[i] = 1.0f;
1099 continue;
1100 }
1101
1102 sincTable[i] = sinf(x) / x;
1103 }
1104}
1105
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001106float sinc(float x)
dburgessb3a0ca42011-10-12 07:44:40 +00001107{
Thomas Tsou0e0e1f42013-11-09 22:08:51 -05001108 if (fabs(x) >= 8 * M_PI)
1109 return 0.0;
1110
1111 int index = (int) floorf(fabs(x) / (8 * M_PI) * TABLESIZE);
1112
1113 return sincTable[index];
dburgessb3a0ca42011-10-12 07:44:40 +00001114}
1115
Thomas Tsouf79c4d02013-11-09 15:51:56 -06001116/*
1117 * Create fractional delay filterbank with Blackman-harris windowed
1118 * sinc function generator. The number of filters generated is specified
1119 * by the DELAYFILTS value.
1120 */
1121void generateDelayFilters()
1122{
1123 int h_len = 20;
1124 complex *data;
1125 signalVector *h;
1126 signalVector::iterator itr;
1127
1128 float k, sum;
1129 float a0 = 0.35875;
1130 float a1 = 0.48829;
1131 float a2 = 0.14128;
1132 float a3 = 0.01168;
1133
1134 for (int i = 0; i < DELAYFILTS; i++) {
1135 data = (complex *) convolve_h_alloc(h_len);
1136 h = new signalVector(data, 0, h_len);
1137 h->setAligned(true);
1138 h->isReal(true);
1139
1140 sum = 0.0;
1141 itr = h->end();
1142 for (int n = 0; n < h_len; n++) {
1143 k = (float) n;
1144 *--itr = (complex) sinc(M_PI_F *
1145 (k - (float) h_len / 2.0 - (float) i / DELAYFILTS));
1146 *itr *= a0 -
1147 a1 * cos(2 * M_PI * n / (h_len - 1)) +
1148 a2 * cos(4 * M_PI * n / (h_len - 1)) -
1149 a3 * cos(6 * M_PI * n / (h_len - 1));
1150
1151 sum += itr->real();
1152 }
1153
1154 itr = h->begin();
1155 for (int n = 0; n < h_len; n++)
1156 *itr++ /= sum;
1157
1158 delayFilters[i] = h;
1159 }
1160}
1161
Thomas Tsou94edaae2013-11-09 22:19:19 -05001162signalVector *delayVector(signalVector *in, signalVector *out, float delay)
dburgessb3a0ca42011-10-12 07:44:40 +00001163{
Thomas Tsouf79c4d02013-11-09 15:51:56 -06001164 int whole, index;
Thomas Tsou2c282f52013-10-08 21:34:35 -04001165 float frac;
Thomas Tsou94edaae2013-11-09 22:19:19 -05001166 signalVector *h, *shift, *fshift = NULL;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001167
Thomas Tsou2c282f52013-10-08 21:34:35 -04001168 whole = floor(delay);
1169 frac = delay - whole;
1170
1171 /* Sinc interpolated fractional shift (if allowable) */
1172 if (fabs(frac) > 1e-2) {
Thomas Tsouf79c4d02013-11-09 15:51:56 -06001173 index = floorf(frac * (float) DELAYFILTS);
1174 h = delayFilters[index];
Thomas Tsou2c282f52013-10-08 21:34:35 -04001175
Thomas Tsou94edaae2013-11-09 22:19:19 -05001176 fshift = convolve(in, h, NULL, NO_DELAY);
1177 if (!fshift)
1178 return NULL;
dburgessb3a0ca42011-10-12 07:44:40 +00001179 }
1180
Thomas Tsou94edaae2013-11-09 22:19:19 -05001181 if (!fshift)
1182 shift = new signalVector(*in);
1183 else
1184 shift = fshift;
1185
Thomas Tsou2c282f52013-10-08 21:34:35 -04001186 /* Integer sample shift */
1187 if (whole < 0) {
1188 whole = -whole;
Thomas Tsou94edaae2013-11-09 22:19:19 -05001189 signalVector::iterator wBurstItr = shift->begin();
1190 signalVector::iterator shiftedItr = shift->begin() + whole;
Thomas Tsou2c282f52013-10-08 21:34:35 -04001191
Thomas Tsou94edaae2013-11-09 22:19:19 -05001192 while (shiftedItr < shift->end())
dburgessb3a0ca42011-10-12 07:44:40 +00001193 *wBurstItr++ = *shiftedItr++;
Thomas Tsou2c282f52013-10-08 21:34:35 -04001194
Thomas Tsou94edaae2013-11-09 22:19:19 -05001195 while (wBurstItr < shift->end())
1196 *wBurstItr++ = 0.0;
1197 } else if (whole >= 0) {
1198 signalVector::iterator wBurstItr = shift->end() - 1;
1199 signalVector::iterator shiftedItr = shift->end() - 1 - whole;
1200
1201 while (shiftedItr >= shift->begin())
dburgessb3a0ca42011-10-12 07:44:40 +00001202 *wBurstItr-- = *shiftedItr--;
Thomas Tsou94edaae2013-11-09 22:19:19 -05001203
1204 while (wBurstItr >= shift->begin())
dburgessb3a0ca42011-10-12 07:44:40 +00001205 *wBurstItr-- = 0.0;
1206 }
Thomas Tsou2c282f52013-10-08 21:34:35 -04001207
Thomas Tsou94edaae2013-11-09 22:19:19 -05001208 if (!out)
1209 return shift;
1210
1211 out->clone(*shift);
1212 delete shift;
1213 return out;
dburgessb3a0ca42011-10-12 07:44:40 +00001214}
Thomas Tsou2c282f52013-10-08 21:34:35 -04001215
dburgessb3a0ca42011-10-12 07:44:40 +00001216signalVector *gaussianNoise(int length,
1217 float variance,
1218 complex mean)
1219{
1220
1221 signalVector *noise = new signalVector(length);
1222 signalVector::iterator nPtr = noise->begin();
1223 float stddev = sqrtf(variance);
1224 while (nPtr < noise->end()) {
1225 float u1 = (float) rand()/ (float) RAND_MAX;
1226 while (u1==0.0)
1227 u1 = (float) rand()/ (float) RAND_MAX;
1228 float u2 = (float) rand()/ (float) RAND_MAX;
1229 float arg = 2.0*M_PI*u2;
1230 *nPtr = mean + stddev*complex(cos(arg),sin(arg))*sqrtf(-2.0*log(u1));
1231 nPtr++;
1232 }
1233
1234 return noise;
1235}
1236
1237complex interpolatePoint(const signalVector &inSig,
1238 float ix)
1239{
1240
1241 int start = (int) (floor(ix) - 10);
1242 if (start < 0) start = 0;
1243 int end = (int) (floor(ix) + 11);
1244 if ((unsigned) end > inSig.size()-1) end = inSig.size()-1;
1245
1246 complex pVal = 0.0;
Thomas Tsou20eb6d62013-11-09 14:30:41 -05001247 if (!inSig.isReal()) {
dburgessb3a0ca42011-10-12 07:44:40 +00001248 for (int i = start; i < end; i++)
1249 pVal += inSig[i] * sinc(M_PI_F*(i-ix));
1250 }
1251 else {
1252 for (int i = start; i < end; i++)
1253 pVal += inSig[i].real() * sinc(M_PI_F*(i-ix));
1254 }
1255
1256 return pVal;
1257}
1258
Thomas Tsou8181b012013-08-20 21:17:19 -04001259static complex fastPeakDetect(const signalVector &rxBurst, float *index)
1260{
1261 float val, max = 0.0f;
1262 complex amp;
1263 int _index = -1;
1264
Thomas Tsou3f32ab52013-11-15 16:32:54 -05001265 for (size_t i = 0; i < rxBurst.size(); i++) {
Thomas Tsou8181b012013-08-20 21:17:19 -04001266 val = rxBurst[i].norm2();
1267 if (val > max) {
1268 max = val;
1269 _index = i;
1270 amp = rxBurst[i];
1271 }
1272 }
1273
1274 if (index)
1275 *index = (float) _index;
1276
1277 return amp;
1278}
1279
dburgessb3a0ca42011-10-12 07:44:40 +00001280complex peakDetect(const signalVector &rxBurst,
1281 float *peakIndex,
1282 float *avgPwr)
1283{
1284
1285
1286 complex maxVal = 0.0;
1287 float maxIndex = -1;
1288 float sumPower = 0.0;
1289
1290 for (unsigned int i = 0; i < rxBurst.size(); i++) {
1291 float samplePower = rxBurst[i].norm2();
1292 if (samplePower > maxVal.real()) {
1293 maxVal = samplePower;
1294 maxIndex = i;
1295 }
1296 sumPower += samplePower;
1297 }
1298
1299 // interpolate around the peak
1300 // to save computation, we'll use early-late balancing
1301 float earlyIndex = maxIndex-1;
1302 float lateIndex = maxIndex+1;
1303
1304 float incr = 0.5;
1305 while (incr > 1.0/1024.0) {
1306 complex earlyP = interpolatePoint(rxBurst,earlyIndex);
1307 complex lateP = interpolatePoint(rxBurst,lateIndex);
1308 if (earlyP < lateP)
1309 earlyIndex += incr;
1310 else if (earlyP > lateP)
1311 earlyIndex -= incr;
1312 else break;
1313 incr /= 2.0;
1314 lateIndex = earlyIndex + 2.0;
1315 }
1316
1317 maxIndex = earlyIndex + 1.0;
1318 maxVal = interpolatePoint(rxBurst,maxIndex);
1319
1320 if (peakIndex!=NULL)
1321 *peakIndex = maxIndex;
1322
1323 if (avgPwr!=NULL)
1324 *avgPwr = (sumPower-maxVal.norm2()) / (rxBurst.size()-1);
1325
1326 return maxVal;
1327
1328}
1329
1330void scaleVector(signalVector &x,
1331 complex scale)
1332{
Thomas Tsou7e4e5362013-10-30 21:18:55 -04001333#ifdef HAVE_NEON
1334 int len = x.size();
1335
1336 scale_complex((float *) x.begin(),
1337 (float *) x.begin(),
1338 (float *) &scale, len);
1339#else
dburgessb3a0ca42011-10-12 07:44:40 +00001340 signalVector::iterator xP = x.begin();
1341 signalVector::iterator xPEnd = x.end();
Thomas Tsou20eb6d62013-11-09 14:30:41 -05001342 if (!x.isReal()) {
dburgessb3a0ca42011-10-12 07:44:40 +00001343 while (xP < xPEnd) {
1344 *xP = *xP * scale;
1345 xP++;
1346 }
1347 }
1348 else {
1349 while (xP < xPEnd) {
1350 *xP = xP->real() * scale;
1351 xP++;
1352 }
1353 }
Thomas Tsou7e4e5362013-10-30 21:18:55 -04001354#endif
dburgessb3a0ca42011-10-12 07:44:40 +00001355}
1356
1357/** in-place conjugation */
1358void conjugateVector(signalVector &x)
1359{
Thomas Tsou20eb6d62013-11-09 14:30:41 -05001360 if (x.isReal()) return;
dburgessb3a0ca42011-10-12 07:44:40 +00001361 signalVector::iterator xP = x.begin();
1362 signalVector::iterator xPEnd = x.end();
1363 while (xP < xPEnd) {
1364 *xP = xP->conj();
1365 xP++;
1366 }
1367}
1368
1369
1370// in-place addition!!
1371bool addVector(signalVector &x,
1372 signalVector &y)
1373{
1374 signalVector::iterator xP = x.begin();
1375 signalVector::iterator yP = y.begin();
1376 signalVector::iterator xPEnd = x.end();
1377 signalVector::iterator yPEnd = y.end();
1378 while ((xP < xPEnd) && (yP < yPEnd)) {
1379 *xP = *xP + *yP;
1380 xP++; yP++;
1381 }
1382 return true;
1383}
1384
1385// in-place multiplication!!
1386bool multVector(signalVector &x,
1387 signalVector &y)
1388{
1389 signalVector::iterator xP = x.begin();
1390 signalVector::iterator yP = y.begin();
1391 signalVector::iterator xPEnd = x.end();
1392 signalVector::iterator yPEnd = y.end();
1393 while ((xP < xPEnd) && (yP < yPEnd)) {
1394 *xP = (*xP) * (*yP);
1395 xP++; yP++;
1396 }
1397 return true;
1398}
1399
Tom Tsou2079a3c2016-03-06 00:58:56 -08001400static bool generateMidamble(int sps, int tsc)
dburgessb3a0ca42011-10-12 07:44:40 +00001401{
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001402 bool status = true;
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001403 float toa;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001404 complex *data = NULL;
1405 signalVector *autocorr = NULL, *midamble = NULL;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001406 signalVector *midMidamble = NULL, *_midMidamble = NULL;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001407
Thomas Tsou3eaae802013-08-20 19:31:14 -04001408 if ((tsc < 0) || (tsc > 7))
dburgessb3a0ca42011-10-12 07:44:40 +00001409 return false;
1410
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001411 delete gMidambles[tsc];
Thomas Tsou3eaae802013-08-20 19:31:14 -04001412
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001413 /* Use middle 16 bits of each TSC. Correlation sequence is not pulse shaped */
1414 midMidamble = modulateBurst(gTrainingSequence[tsc].segment(5,16), 0, sps, true);
1415 if (!midMidamble)
1416 return false;
1417
Thomas Tsou3eaae802013-08-20 19:31:14 -04001418 /* Simulated receive sequence is pulse shaped */
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001419 midamble = modulateBurst(gTrainingSequence[tsc], 0, sps, false);
1420 if (!midamble) {
1421 status = false;
1422 goto release;
dburgessb3a0ca42011-10-12 07:44:40 +00001423 }
Thomas Tsou3eaae802013-08-20 19:31:14 -04001424
dburgessb3a0ca42011-10-12 07:44:40 +00001425 // NOTE: Because ideal TSC 16-bit midamble is 66 symbols into burst,
1426 // the ideal TSC has an + 180 degree phase shift,
1427 // due to the pi/2 frequency shift, that
1428 // needs to be accounted for.
1429 // 26-midamble is 61 symbols into burst, has +90 degree phase shift.
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001430 scaleVector(*midMidamble, complex(-1.0, 0.0));
1431 scaleVector(*midamble, complex(0.0, 1.0));
dburgessb3a0ca42011-10-12 07:44:40 +00001432
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001433 conjugateVector(*midMidamble);
dburgessb3a0ca42011-10-12 07:44:40 +00001434
Thomas Tsou3eaae802013-08-20 19:31:14 -04001435 /* For SSE alignment, reallocate the midamble sequence on 16-byte boundary */
1436 data = (complex *) convolve_h_alloc(midMidamble->size());
1437 _midMidamble = new signalVector(data, 0, midMidamble->size());
1438 _midMidamble->setAligned(true);
1439 memcpy(_midMidamble->begin(), midMidamble->begin(),
1440 midMidamble->size() * sizeof(complex));
1441
1442 autocorr = convolve(midamble, _midMidamble, NULL, NO_DELAY);
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001443 if (!autocorr) {
1444 status = false;
1445 goto release;
1446 }
dburgessb3a0ca42011-10-12 07:44:40 +00001447
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001448 gMidambles[tsc] = new CorrelationSequence;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001449 gMidambles[tsc]->buffer = data;
1450 gMidambles[tsc]->sequence = _midMidamble;
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001451 gMidambles[tsc]->gain = peakDetect(*autocorr, &toa, NULL);
1452
1453 /* For 1 sps only
1454 * (Half of correlation length - 1) + midpoint of pulse shape + remainder
1455 * 13.5 = (16 / 2 - 1) + 1.5 + (26 - 10) / 2
1456 */
1457 if (sps == 1)
1458 gMidambles[tsc]->toa = toa - 13.5;
1459 else
1460 gMidambles[tsc]->toa = 0;
dburgessb3a0ca42011-10-12 07:44:40 +00001461
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001462release:
dburgessb3a0ca42011-10-12 07:44:40 +00001463 delete autocorr;
1464 delete midamble;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001465 delete midMidamble;
dburgessb3a0ca42011-10-12 07:44:40 +00001466
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001467 if (!status) {
Thomas Tsou3eaae802013-08-20 19:31:14 -04001468 delete _midMidamble;
1469 free(data);
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001470 gMidambles[tsc] = NULL;
1471 }
1472
1473 return status;
dburgessb3a0ca42011-10-12 07:44:40 +00001474}
1475
Tom Tsoud3253432016-03-06 03:08:01 -08001476CorrelationSequence *generateEdgeMidamble(int tsc)
1477{
1478 complex *data = NULL;
1479 signalVector *midamble = NULL, *_midamble = NULL;
1480 CorrelationSequence *seq;
1481
1482 if ((tsc < 0) || (tsc > 7))
1483 return NULL;
1484
1485 /* Use middle 48 bits of each TSC. Correlation sequence is not pulse shaped */
1486 const BitVector *bits = &gEdgeTrainingSequence[tsc];
1487 midamble = modulateEdgeBurst(bits->segment(15, 48), 1, true);
1488 if (!midamble)
1489 return NULL;
1490
1491 conjugateVector(*midamble);
1492
1493 data = (complex *) convolve_h_alloc(midamble->size());
1494 _midamble = new signalVector(data, 0, midamble->size());
1495 _midamble->setAligned(true);
1496 memcpy(_midamble->begin(), midamble->begin(),
1497 midamble->size() * sizeof(complex));
1498
1499 /* Channel gain is an empirically measured value */
1500 seq = new CorrelationSequence;
1501 seq->buffer = data;
1502 seq->sequence = _midamble;
1503 seq->gain = Complex<float>(-19.6432, 19.5006) / 1.18;
1504 seq->toa = 0;
1505
1506 delete midamble;
1507
1508 return seq;
1509}
1510
Tom Tsou2079a3c2016-03-06 00:58:56 -08001511static bool generateRACHSequence(int sps)
dburgessb3a0ca42011-10-12 07:44:40 +00001512{
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001513 bool status = true;
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001514 float toa;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001515 complex *data = NULL;
1516 signalVector *autocorr = NULL;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001517 signalVector *seq0 = NULL, *seq1 = NULL, *_seq1 = NULL;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001518
1519 delete gRACHSequence;
1520
1521 seq0 = modulateBurst(gRACHSynchSequence, 0, sps, false);
1522 if (!seq0)
1523 return false;
1524
1525 seq1 = modulateBurst(gRACHSynchSequence.segment(0, 40), 0, sps, true);
1526 if (!seq1) {
1527 status = false;
1528 goto release;
dburgessb3a0ca42011-10-12 07:44:40 +00001529 }
1530
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001531 conjugateVector(*seq1);
dburgessb3a0ca42011-10-12 07:44:40 +00001532
Thomas Tsou3eaae802013-08-20 19:31:14 -04001533 /* For SSE alignment, reallocate the midamble sequence on 16-byte boundary */
1534 data = (complex *) convolve_h_alloc(seq1->size());
1535 _seq1 = new signalVector(data, 0, seq1->size());
1536 _seq1->setAligned(true);
1537 memcpy(_seq1->begin(), seq1->begin(), seq1->size() * sizeof(complex));
1538
1539 autocorr = convolve(seq0, _seq1, autocorr, NO_DELAY);
1540 if (!autocorr) {
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001541 status = false;
1542 goto release;
1543 }
dburgessb3a0ca42011-10-12 07:44:40 +00001544
1545 gRACHSequence = new CorrelationSequence;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001546 gRACHSequence->sequence = _seq1;
1547 gRACHSequence->buffer = data;
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001548 gRACHSequence->gain = peakDetect(*autocorr, &toa, NULL);
1549
1550 /* For 1 sps only
1551 * (Half of correlation length - 1) + midpoint of pulse shaping filer
1552 * 20.5 = (40 / 2 - 1) + 1.5
1553 */
1554 if (sps == 1)
1555 gRACHSequence->toa = toa - 20.5;
1556 else
1557 gRACHSequence->toa = 0.0;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001558
1559release:
dburgessb3a0ca42011-10-12 07:44:40 +00001560 delete autocorr;
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001561 delete seq0;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001562 delete seq1;
dburgessb3a0ca42011-10-12 07:44:40 +00001563
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001564 if (!status) {
Thomas Tsou3eaae802013-08-20 19:31:14 -04001565 delete _seq1;
1566 free(data);
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001567 gRACHSequence = NULL;
1568 }
dburgessb3a0ca42011-10-12 07:44:40 +00001569
Thomas Tsoue5dcfc42013-08-20 16:27:12 -04001570 return status;
dburgessb3a0ca42011-10-12 07:44:40 +00001571}
Thomas Tsou3eaae802013-08-20 19:31:14 -04001572
Thomas Tsou865bca42013-08-21 20:58:00 -04001573static float computePeakRatio(signalVector *corr,
1574 int sps, float toa, complex amp)
dburgessb3a0ca42011-10-12 07:44:40 +00001575{
Thomas Tsou865bca42013-08-21 20:58:00 -04001576 int num = 0;
1577 complex *peak;
1578 float rms, avg = 0.0;
dburgessb3a0ca42011-10-12 07:44:40 +00001579
Thomas Tsou865bca42013-08-21 20:58:00 -04001580 /* Check for bogus results */
1581 if ((toa < 0.0) || (toa > corr->size()))
1582 return 0.0;
dburgessb3a0ca42011-10-12 07:44:40 +00001583
Alexander Chemeris1e9b4d52015-06-04 19:05:28 -04001584 peak = corr->begin() + (int) rint(toa);
1585
Thomas Tsou3eaae802013-08-20 19:31:14 -04001586 for (int i = 2 * sps; i <= 5 * sps; i++) {
Thomas Tsou865bca42013-08-21 20:58:00 -04001587 if (peak - i >= corr->begin()) {
Thomas Tsou3eaae802013-08-20 19:31:14 -04001588 avg += (peak - i)->norm2();
1589 num++;
1590 }
Thomas Tsou865bca42013-08-21 20:58:00 -04001591 if (peak + i < corr->end()) {
Thomas Tsou3eaae802013-08-20 19:31:14 -04001592 avg += (peak + i)->norm2();
1593 num++;
1594 }
dburgessb3a0ca42011-10-12 07:44:40 +00001595 }
1596
Thomas Tsou3eaae802013-08-20 19:31:14 -04001597 if (num < 2)
Thomas Tsou865bca42013-08-21 20:58:00 -04001598 return 0.0;
dburgessb3a0ca42011-10-12 07:44:40 +00001599
Thomas Tsou3eaae802013-08-20 19:31:14 -04001600 rms = sqrtf(avg / (float) num) + 0.00001;
dburgessb3a0ca42011-10-12 07:44:40 +00001601
Thomas Tsou865bca42013-08-21 20:58:00 -04001602 return (amp.abs()) / rms;
dburgessb3a0ca42011-10-12 07:44:40 +00001603}
1604
1605bool energyDetect(signalVector &rxBurst,
1606 unsigned windowLength,
1607 float detectThreshold,
1608 float *avgPwr)
1609{
1610
1611 signalVector::const_iterator windowItr = rxBurst.begin(); //+rxBurst.size()/2 - 5*windowLength/2;
1612 float energy = 0.0;
1613 if (windowLength < 0) windowLength = 20;
1614 if (windowLength > rxBurst.size()) windowLength = rxBurst.size();
1615 for (unsigned i = 0; i < windowLength; i++) {
1616 energy += windowItr->norm2();
1617 windowItr+=4;
1618 }
1619 if (avgPwr) *avgPwr = energy/windowLength;
dburgessb3a0ca42011-10-12 07:44:40 +00001620 return (energy/windowLength > detectThreshold*detectThreshold);
1621}
dburgessb3a0ca42011-10-12 07:44:40 +00001622
Thomas Tsou865bca42013-08-21 20:58:00 -04001623/*
1624 * Detect a burst based on correlation and peak-to-average ratio
1625 *
1626 * For one sampler-per-symbol, perform fast peak detection (no interpolation)
1627 * for initial gating. We do this because energy detection should be disabled.
1628 * For higher oversampling values, we assume the energy detector is in place
1629 * and we run full interpolating peak detection.
1630 */
1631static int detectBurst(signalVector &burst,
1632 signalVector &corr, CorrelationSequence *sync,
1633 float thresh, int sps, complex *amp, float *toa,
1634 int start, int len)
dburgessb3a0ca42011-10-12 07:44:40 +00001635{
Tom Tsoud3253432016-03-06 03:08:01 -08001636 signalVector *corr_in, *dec = NULL;
1637
1638 if (sps == 4) {
1639 dec = downsampleBurst(burst);
1640 corr_in = dec;
1641 sps = 1;
1642 } else {
1643 corr_in = &burst;
1644 }
1645
Thomas Tsou865bca42013-08-21 20:58:00 -04001646 /* Correlate */
Tom Tsoud3253432016-03-06 03:08:01 -08001647 if (!convolve(corr_in, sync->sequence, &corr,
1648 CUSTOM, start, len, 1, 0)) {
1649 delete dec;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001650 return -1;
dburgessb3a0ca42011-10-12 07:44:40 +00001651 }
1652
Tom Tsoud3253432016-03-06 03:08:01 -08001653 delete dec;
1654
1655 /* Running at the downsampled rate at this point */
1656 sps = 1;
1657
Thomas Tsou865bca42013-08-21 20:58:00 -04001658 /* Peak detection - place restrictions at correlation edges */
1659 *amp = fastPeakDetect(corr, toa);
Thomas Tsou3eaae802013-08-20 19:31:14 -04001660
Thomas Tsou865bca42013-08-21 20:58:00 -04001661 if ((*toa < 3 * sps) || (*toa > len - 3 * sps))
1662 return 0;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001663
Thomas Tsou865bca42013-08-21 20:58:00 -04001664 /* Peak -to-average ratio */
1665 if (computePeakRatio(&corr, sps, *toa, *amp) < thresh)
1666 return 0;
1667
1668 /* Compute peak-to-average ratio. Reject if we don't have enough values */
1669 *amp = peakDetect(corr, toa, NULL);
1670
1671 /* Normalize our channel gain */
1672 *amp = *amp / sync->gain;
1673
Thomas Tsoua57bc8a2013-09-05 08:16:47 +08001674 /* Compenate for residual rotation with dual Laurent pulse */
1675 if (sps == 4)
1676 *amp = *amp * complex(0.0, 1.0);
1677
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001678 /* Compensate for residuate time lag */
1679 *toa = *toa - sync->toa;
1680
Thomas Tsou865bca42013-08-21 20:58:00 -04001681 return 1;
1682}
1683
Alexander Chemeris954b1182015-06-04 15:39:41 -04001684static float maxAmplitude(signalVector &burst)
Tom Tsou577cd022015-05-18 13:57:54 -07001685{
Alexander Chemeris954b1182015-06-04 15:39:41 -04001686 float max = 0.0;
1687 for (size_t i = 0; i < burst.size(); i++) {
1688 if (fabs(burst[i].real()) > max)
1689 max = fabs(burst[i].real());
1690 if (fabs(burst[i].imag()) > max)
1691 max = fabs(burst[i].imag());
1692 }
Tom Tsou577cd022015-05-18 13:57:54 -07001693
Alexander Chemeris954b1182015-06-04 15:39:41 -04001694 return max;
Tom Tsou577cd022015-05-18 13:57:54 -07001695}
1696
Alexander Chemeris130a8002015-06-09 20:52:11 -04001697/*
1698 * RACH/Normal burst detection with clipping detection
Thomas Tsou865bca42013-08-21 20:58:00 -04001699 *
1700 * Correlation window parameters:
Alexander Chemeris130a8002015-06-09 20:52:11 -04001701 * target: Tail bits + burst length
1702 * head: Search symbols before target
1703 * tail: Search symbols after target
Thomas Tsou865bca42013-08-21 20:58:00 -04001704 */
Alexander Chemeris130a8002015-06-09 20:52:11 -04001705int detectGeneralBurst(signalVector &rxBurst,
1706 float thresh,
1707 int sps,
1708 complex &amp,
1709 float &toa,
1710 int target, int head, int tail,
1711 CorrelationSequence *sync)
Thomas Tsou865bca42013-08-21 20:58:00 -04001712{
Alexander Chemeris130a8002015-06-09 20:52:11 -04001713 int rc, start, len;
Alexander Chemeris954b1182015-06-04 15:39:41 -04001714 bool clipping = false;
Thomas Tsoub075dd22013-11-09 22:25:46 -05001715 signalVector *corr;
Thomas Tsou865bca42013-08-21 20:58:00 -04001716
1717 if ((sps != 1) && (sps != 4))
Tom Tsou577cd022015-05-18 13:57:54 -07001718 return -SIGERR_UNSUPPORTED;
1719
Alexander Chemeris954b1182015-06-04 15:39:41 -04001720 // Detect potential clipping
1721 // We still may be able to demod the burst, so we'll give it a try
1722 // and only report clipping if we can't demod.
1723 float maxAmpl = maxAmplitude(rxBurst);
1724 if (maxAmpl > CLIP_THRESH) {
1725 LOG(DEBUG) << "max burst amplitude: " << maxAmpl << " is above the clipping threshold: " << CLIP_THRESH << std::endl;
1726 clipping = true;
1727 }
Thomas Tsou865bca42013-08-21 20:58:00 -04001728
Tom Tsoud3253432016-03-06 03:08:01 -08001729 start = target - head - 1;
1730 len = head + tail;
Thomas Tsoub075dd22013-11-09 22:25:46 -05001731 corr = new signalVector(len);
Thomas Tsou865bca42013-08-21 20:58:00 -04001732
Thomas Tsoub075dd22013-11-09 22:25:46 -05001733 rc = detectBurst(rxBurst, *corr, sync,
Alexander Chemeris130a8002015-06-09 20:52:11 -04001734 thresh, sps, &amp, &toa, start, len);
Thomas Tsoub075dd22013-11-09 22:25:46 -05001735 delete corr;
1736
Thomas Tsou865bca42013-08-21 20:58:00 -04001737 if (rc < 0) {
Tom Tsou577cd022015-05-18 13:57:54 -07001738 return -SIGERR_INTERNAL;
Thomas Tsou865bca42013-08-21 20:58:00 -04001739 } else if (!rc) {
Alexander Chemeris130a8002015-06-09 20:52:11 -04001740 amp = 0.0f;
1741 toa = 0.0f;
Alexander Chemeris954b1182015-06-04 15:39:41 -04001742 return clipping?-SIGERR_CLIP:SIGERR_NONE;
dburgessb3a0ca42011-10-12 07:44:40 +00001743 }
1744
Thomas Tsou865bca42013-08-21 20:58:00 -04001745 /* Subtract forward search bits from delay */
Tom Tsoud3253432016-03-06 03:08:01 -08001746 toa -= head;
Thomas Tsou3eaae802013-08-20 19:31:14 -04001747
Thomas Tsou865bca42013-08-21 20:58:00 -04001748 return 1;
1749}
Thomas Tsou3eaae802013-08-20 19:31:14 -04001750
Alexander Chemeris130a8002015-06-09 20:52:11 -04001751
1752/*
1753 * RACH burst detection
1754 *
1755 * Correlation window parameters:
1756 * target: Tail bits + RACH length (reduced from 41 to a multiple of 4)
1757 * head: Search 4 symbols before target
1758 * tail: Search 10 symbols after target
1759 */
1760int detectRACHBurst(signalVector &rxBurst,
1761 float thresh,
1762 int sps,
1763 complex &amp,
1764 float &toa)
1765{
1766 int rc, target, head, tail;
1767 CorrelationSequence *sync;
1768
1769 target = 8 + 40;
1770 head = 4;
1771 tail = 10;
1772 sync = gRACHSequence;
1773
1774 rc = detectGeneralBurst(rxBurst, thresh, sps, amp, toa,
1775 target, head, tail, sync);
1776
1777 return rc;
1778}
1779
Thomas Tsou865bca42013-08-21 20:58:00 -04001780/*
1781 * Normal burst detection
1782 *
1783 * Correlation window parameters:
1784 * target: Tail + data + mid-midamble + 1/2 remaining midamblebits
Thomas Tsoudafb3372013-09-18 16:21:26 -04001785 * head: Search 4 symbols before target
1786 * tail: Search 4 symbols + maximum expected delay
Thomas Tsou865bca42013-08-21 20:58:00 -04001787 */
1788int analyzeTrafficBurst(signalVector &rxBurst, unsigned tsc, float thresh,
Tom Tsou46569402016-03-06 01:59:38 -08001789 int sps, complex &amp, float &toa, unsigned max_toa)
Thomas Tsou865bca42013-08-21 20:58:00 -04001790{
Alexander Chemeris130a8002015-06-09 20:52:11 -04001791 int rc, target, head, tail;
Thomas Tsou865bca42013-08-21 20:58:00 -04001792 CorrelationSequence *sync;
1793
Alexander Chemeris130a8002015-06-09 20:52:11 -04001794 if ((tsc < 0) || (tsc > 7))
Tom Tsou577cd022015-05-18 13:57:54 -07001795 return -SIGERR_UNSUPPORTED;
1796
Thomas Tsou865bca42013-08-21 20:58:00 -04001797 target = 3 + 58 + 16 + 5;
Thomas Tsoudafb3372013-09-18 16:21:26 -04001798 head = 4;
1799 tail = 4 + max_toa;
Thomas Tsou865bca42013-08-21 20:58:00 -04001800 sync = gMidambles[tsc];
Thomas Tsou865bca42013-08-21 20:58:00 -04001801
Alexander Chemeris130a8002015-06-09 20:52:11 -04001802 rc = detectGeneralBurst(rxBurst, thresh, sps, amp, toa,
1803 target, head, tail, sync);
Alexander Chemeris130a8002015-06-09 20:52:11 -04001804 return rc;
dburgessb3a0ca42011-10-12 07:44:40 +00001805}
1806
Tom Tsoud3253432016-03-06 03:08:01 -08001807int detectEdgeBurst(signalVector &rxBurst, unsigned tsc, float thresh,
1808 int sps, complex &amp, float &toa, unsigned max_toa)
1809{
1810 int rc, target, head, tail;
1811 CorrelationSequence *sync;
1812
1813 if ((tsc < 0) || (tsc > 7))
1814 return -SIGERR_UNSUPPORTED;
1815
1816 target = 3 + 58 + 16 + 5;
1817 head = 5;
1818 tail = 5 + max_toa;
1819 sync = gEdgeMidambles[tsc];
1820
1821 rc = detectGeneralBurst(rxBurst, thresh, sps, amp, toa,
1822 target, head, tail, sync);
1823 return rc;
1824}
1825
1826signalVector *downsampleBurst(signalVector &burst)
1827{
1828 size_t ilen = DOWNSAMPLE_IN_LEN, olen = DOWNSAMPLE_OUT_LEN;
1829
1830 signalVector *out = new signalVector(olen);
1831 memcpy(dnsampler_in->begin(), burst.begin(), ilen * 2 * sizeof(float));
1832
1833 dnsampler->rotate((float *) dnsampler_in->begin(), ilen,
1834 (float *) out->begin(), olen);
1835 return out;
1836};
1837
Thomas Tsou94edaae2013-11-09 22:19:19 -05001838signalVector *decimateVector(signalVector &wVector, size_t factor)
dburgessb3a0ca42011-10-12 07:44:40 +00001839{
Thomas Tsou94edaae2013-11-09 22:19:19 -05001840 signalVector *dec;
dburgessb3a0ca42011-10-12 07:44:40 +00001841
Thomas Tsou94edaae2013-11-09 22:19:19 -05001842 if (factor <= 1)
1843 return NULL;
dburgessb3a0ca42011-10-12 07:44:40 +00001844
Thomas Tsou94edaae2013-11-09 22:19:19 -05001845 dec = new signalVector(wVector.size() / factor);
1846 dec->isReal(wVector.isReal());
dburgessb3a0ca42011-10-12 07:44:40 +00001847
Thomas Tsou94edaae2013-11-09 22:19:19 -05001848 signalVector::iterator itr = dec->begin();
1849 for (size_t i = 0; i < wVector.size(); i += factor)
1850 *itr++ = wVector[i];
1851
1852 return dec;
dburgessb3a0ca42011-10-12 07:44:40 +00001853}
1854
Tom Tsoud3253432016-03-06 03:08:01 -08001855/*
1856 * Soft 8-PSK decoding using Manhattan distance metric
1857 */
1858static SoftVector *softSliceEdgeBurst(signalVector &burst)
1859{
1860 size_t nsyms = 148;
1861
1862 if (burst.size() < nsyms)
1863 return NULL;
1864
1865 signalVector::iterator itr;
1866 SoftVector *bits = new SoftVector(nsyms * 3);
1867
1868 /*
1869 * Bits 0 and 1 - First and second bits of the symbol respectively
1870 */
1871 rotateBurst2(burst, -M_PI / 8.0);
1872 itr = burst.begin();
1873 for (size_t i = 0; i < nsyms; i++) {
1874 (*bits)[3 * i + 0] = -itr->imag();
1875 (*bits)[3 * i + 1] = itr->real();
1876 itr++;
1877 }
1878
1879 /*
1880 * Bit 2 - Collapse symbols into quadrant 0 (positive X and Y).
1881 * Decision area is then simplified to X=Y axis. Rotate again to
1882 * place decision boundary on X-axis.
1883 */
1884 itr = burst.begin();
1885 for (size_t i = 0; i < burst.size(); i++) {
1886 burst[i] = Complex<float>(fabs(itr->real()), fabs(itr->imag()));
1887 itr++;
1888 }
1889
1890 rotateBurst2(burst, -M_PI / 4.0);
1891 itr = burst.begin();
1892 for (size_t i = 0; i < nsyms; i++) {
1893 (*bits)[3 * i + 2] = -itr->imag();
1894 itr++;
1895 }
1896
1897 signalVector soft(bits->size());
1898 for (size_t i = 0; i < bits->size(); i++)
1899 soft[i] = (*bits)[i];
1900
1901 return bits;
1902}
1903
1904/*
1905 * Demodulate GSMK burst. Prior to symbol rotation, operate at
1906 * 4 SPS (if activated) to minimize distortion through the fractional
1907 * delay filters. Symbol rotation and after always operates at 1 SPS.
1908 */
Thomas Tsou83e06892013-08-20 16:10:01 -04001909SoftVector *demodulateBurst(signalVector &rxBurst, int sps,
Thomas Tsou94edaae2013-11-09 22:19:19 -05001910 complex channel, float TOA)
dburgessb3a0ca42011-10-12 07:44:40 +00001911{
Thomas Tsou94edaae2013-11-09 22:19:19 -05001912 SoftVector *bits;
Tom Tsoud3253432016-03-06 03:08:01 -08001913 signalVector *delay, *dec;
dburgessb3a0ca42011-10-12 07:44:40 +00001914
Thomas Tsou94edaae2013-11-09 22:19:19 -05001915 scaleVector(rxBurst, ((complex) 1.0) / channel);
Tom Tsoud3253432016-03-06 03:08:01 -08001916 delay = delayVector(&rxBurst, NULL, -TOA * (float) sps);
dburgessb3a0ca42011-10-12 07:44:40 +00001917
Tom Tsoud3253432016-03-06 03:08:01 -08001918 if (sps == 4) {
1919 dec = downsampleBurst(*delay);
1920 delete delay;
Thomas Tsou94edaae2013-11-09 22:19:19 -05001921 } else {
Tom Tsoud3253432016-03-06 03:08:01 -08001922 dec = delay;
dburgessb3a0ca42011-10-12 07:44:40 +00001923 }
1924
Tom Tsoud3253432016-03-06 03:08:01 -08001925 /* Shift up by a quarter of a frequency */
1926 GMSKReverseRotate(*dec, 1);
Thomas Tsou94edaae2013-11-09 22:19:19 -05001927 vectorSlicer(dec);
dburgessb3a0ca42011-10-12 07:44:40 +00001928
Thomas Tsou94edaae2013-11-09 22:19:19 -05001929 bits = new SoftVector(dec->size());
dburgessb3a0ca42011-10-12 07:44:40 +00001930
Thomas Tsou94edaae2013-11-09 22:19:19 -05001931 SoftVector::iterator bit_itr = bits->begin();
1932 signalVector::iterator burst_itr = dec->begin();
dburgessb3a0ca42011-10-12 07:44:40 +00001933
Thomas Tsou94edaae2013-11-09 22:19:19 -05001934 for (; burst_itr < dec->end(); burst_itr++)
1935 *bit_itr++ = burst_itr->real();
dburgessb3a0ca42011-10-12 07:44:40 +00001936
Thomas Tsou94edaae2013-11-09 22:19:19 -05001937 delete dec;
dburgessb3a0ca42011-10-12 07:44:40 +00001938
Thomas Tsou94edaae2013-11-09 22:19:19 -05001939 return bits;
dburgessb3a0ca42011-10-12 07:44:40 +00001940}
Thomas Tsou94edaae2013-11-09 22:19:19 -05001941
Tom Tsoud3253432016-03-06 03:08:01 -08001942/*
1943 * Demodulate an 8-PSK burst. Prior to symbol rotation, operate at
1944 * 4 SPS (if activated) to minimize distortion through the fractional
1945 * delay filters. Symbol rotation and after always operates at 1 SPS.
1946 *
1947 * Allow 1 SPS demodulation here, but note that other parts of the
1948 * transceiver restrict EDGE operatoin to 4 SPS - 8-PSK distortion
1949 * through the fractional delay filters at 1 SPS renders signal
1950 * nearly unrecoverable.
1951 */
1952SoftVector *demodEdgeBurst(signalVector &burst, int sps,
1953 complex chan, float toa)
1954{
1955 SoftVector *bits;
1956 signalVector *delay, *dec, *rot, *eq;
1957
1958 if ((sps != 1) && (sps != 4))
1959 return NULL;
1960
1961 scaleVector(burst, ((complex) 1.0) / chan);
1962 delay = delayVector(&burst, NULL, -toa * (float) sps);
1963
1964 if (sps == 4) {
1965 dec = downsampleBurst(*delay);
1966 delete delay;
1967 } else {
1968 dec = delay;
1969 }
1970
1971 eq = convolve(dec, GSMPulse4->c0_inv, NULL, NO_DELAY);
1972 rot = derotateEdgeBurst(*eq, 1);
1973
1974 bits = softSliceEdgeBurst(*dec);
1975 vectorSlicer(bits);
1976
1977 delete dec;
1978 delete eq;
1979 delete rot;
1980
1981 return bits;
1982}
1983
Tom Tsou2079a3c2016-03-06 00:58:56 -08001984bool sigProcLibSetup()
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001985{
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001986 initTrigTables();
Thomas Tsou0e0e1f42013-11-09 22:08:51 -05001987 generateSincTable();
Tom Tsou2079a3c2016-03-06 00:58:56 -08001988 initGMSKRotationTables();
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001989
Tom Tsou2079a3c2016-03-06 00:58:56 -08001990 GSMPulse1 = generateGSMPulse(1);
1991 GSMPulse4 = generateGSMPulse(4);
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001992
Tom Tsou2079a3c2016-03-06 00:58:56 -08001993 generateRACHSequence(1);
Tom Tsoud3253432016-03-06 03:08:01 -08001994 for (int tsc = 0; tsc < 8; tsc++) {
Tom Tsou2079a3c2016-03-06 00:58:56 -08001995 generateMidamble(1, tsc);
Tom Tsoud3253432016-03-06 03:08:01 -08001996 gEdgeMidambles[tsc] = generateEdgeMidamble(tsc);
1997 }
Thomas Tsouc1f7c422013-10-11 13:49:55 -04001998
Thomas Tsouf79c4d02013-11-09 15:51:56 -06001999 generateDelayFilters();
2000
Tom Tsoud3253432016-03-06 03:08:01 -08002001 dnsampler = new Resampler(1, 4);
2002 if (!dnsampler->init()) {
2003 LOG(ALERT) << "Rx resampler failed to initialize";
2004 goto fail;
2005 }
2006
2007 dnsampler->enableHistory(false);
2008 dnsampler_in = new signalVector(DOWNSAMPLE_IN_LEN, dnsampler->len());
2009
Thomas Tsouc1f7c422013-10-11 13:49:55 -04002010 return true;
Tom Tsoud3253432016-03-06 03:08:01 -08002011
2012fail:
2013 sigProcLibDestroy();
2014 return false;
Thomas Tsouc1f7c422013-10-11 13:49:55 -04002015}