-
Notifications
You must be signed in to change notification settings - Fork 90
/
rtl.c
427 lines (374 loc) · 9.79 KB
/
rtl.c
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/*
* Copyright (c) 2016 Thierry Leconte
*
*
* This code is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License version 2
* published by the Free Software Foundation.
*
* 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifdef WITH_RTL
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <pthread.h>
#include <math.h>
#include <rtl-sdr.h>
#include "acarsdec.h"
#include <signal.h>
#include <unistd.h>
// set the sameple rate by changing RTMULT
// 2.5Ms/s is the best but could be over limit for some hardware
// 2.0Ms/s is safer
// rtlMult 160 // 2.0000 Ms/s
// rtlMult 192 // 2.4000 Ms/s
// rtlMult 200 // 2.5000 Ms/s
#define RTLMULTMAX 320 // this is well beyond the rtl-sdr capabilities
static rtlsdr_dev_t *dev = NULL;
static int status = 0;
static int rtlInBufSize = 0;
static int rtlInRate = 0;
static int watchdogCounter = 50;
static pthread_mutex_t cbMutex = PTHREAD_MUTEX_INITIALIZER;
#define RTLOUTBUFSZ 1024
/* function verbose_device_search by Kyle Keen
* from http://cgit.osmocom.org/rtl-sdr/tree/src/convenience/convenience.c
*/
int verbose_device_search(char *s)
{
int i, device_count, device, offset;
char *s2;
char vendor[256], product[256], serial[256];
device_count = rtlsdr_get_device_count();
if (!device_count) {
fprintf(stderr, "No supported devices found.\n");
return -1;
}
if (verbose)
fprintf(stderr, "Found %d device(s):\n", device_count);
for (i = 0; i < device_count; i++) {
rtlsdr_get_device_usb_strings(i, vendor, product, serial);
if (verbose)
fprintf(stderr, " %d: %s, %s, SN: %s\n", i, vendor,
product, serial);
}
if (verbose)
fprintf(stderr, "\n");
/* does string look like raw id number */
device = (int)strtol(s, &s2, 0);
if (s2[0] == '\0' && device >= 0 && device < device_count) {
if (verbose)
fprintf(stderr, "Using device %d: %s\n",
device,
rtlsdr_get_device_name((uint32_t) device));
return device;
}
/* does string exact match a serial */
for (i = 0; i < device_count; i++) {
rtlsdr_get_device_usb_strings(i, vendor, product, serial);
if (strcmp(s, serial) != 0) {
continue;
}
device = i;
if (verbose)
fprintf(stderr, "Using device %d: %s\n",
device,
rtlsdr_get_device_name((uint32_t) device));
return device;
}
/* does string prefix match a serial */
for (i = 0; i < device_count; i++) {
rtlsdr_get_device_usb_strings(i, vendor, product, serial);
if (strncmp(s, serial, strlen(s)) != 0) {
continue;
}
device = i;
if (verbose)
fprintf(stderr, "Using device %d: %s\n",
device,
rtlsdr_get_device_name((uint32_t) device));
return device;
}
/* does string suffix match a serial */
for (i = 0; i < device_count; i++) {
rtlsdr_get_device_usb_strings(i, vendor, product, serial);
offset = strlen(serial) - strlen(s);
if (offset < 0) {
continue;
}
if (strncmp(s, serial + offset, strlen(s)) != 0) {
continue;
}
device = i;
if (verbose)
fprintf(stderr, "Using device %d: %s\n",
device,
rtlsdr_get_device_name((uint32_t) device));
return device;
}
fprintf(stderr, "No matching devices found.\n");
return -1;
}
static unsigned int chooseFc(unsigned int *Fd, unsigned int nbch)
{
int n;
int ne;
int Fc;
do {
ne = 0;
for (n = 0; n < nbch - 1; n++) {
if (Fd[n] > Fd[n + 1]) {
unsigned int t;
t = Fd[n + 1];
Fd[n + 1] = Fd[n];
Fd[n] = t;
ne = 1;
}
}
} while (ne);
if ((Fd[nbch - 1] - Fd[0]) > rtlInRate - 4 * INTRATE) {
fprintf(stderr, "Frequencies too far apart\n");
return 0;
}
for (Fc = Fd[nbch - 1] + 2 * INTRATE; Fc > Fd[0] - 2 * INTRATE; Fc--) {
for (n = 0; n < nbch; n++) {
if (abs(Fc - Fd[n]) > rtlInRate / 2 - 2 * INTRATE)
break;
if (abs(Fc - Fd[n]) < 2 * INTRATE)
break;
if (n > 0 && Fc - Fd[n - 1] == Fd[n] - Fc)
break;
}
if (n == nbch)
break;
}
return Fc;
}
int nearest_gain(int target_gain)
{
int i, err1, err2, count, close_gain;
int *gains;
count = rtlsdr_get_tuner_gains(dev, NULL);
if (count <= 0)
return 0;
gains = malloc(sizeof(int) * count);
if(gains == NULL)
return 0;
count = rtlsdr_get_tuner_gains(dev, gains);
close_gain = gains[0];
for (i = 0; i < count; i++) {
err1 = abs(target_gain - close_gain);
err2 = abs(target_gain - gains[i]);
if (err2 < err1) {
close_gain = gains[i];
}
}
free(gains);
return close_gain;
}
int initRtl(char **argv, int optind)
{
int r, n;
int dev_index;
char *argF;
unsigned int Fc;
unsigned int Fd[MAXNBCHANNELS];
if (argv[optind] == NULL) {
fprintf(stderr, "Need device name or index (ex: 0) after -r\n");
exit(1);
}
dev_index = verbose_device_search(argv[optind]);
optind++;
if (rtlMult > RTLMULTMAX) {
fprintf(stderr, "rtlMult can't be larger than 360\n");
return 1;
}
rtlInBufSize = RTLOUTBUFSZ * rtlMult * 2;
rtlInRate = INTRATE * rtlMult;
r = rtlsdr_open(&dev, dev_index);
if (r < 0) {
fprintf(stderr, "Failed to open rtlsdr device\n");
return r;
}
if (gain > 520 || gain == -100) {
if (verbose)
fprintf(stderr, "Tuner gain: AGC\n");
r = rtlsdr_set_tuner_gain_mode(dev, 0);
} else {
rtlsdr_set_tuner_gain_mode(dev, 1);
gain = nearest_gain(gain);
if (verbose)
fprintf(stderr, "Tuner gain: %f\n", (float)gain / 10.0);
r = rtlsdr_set_tuner_gain(dev, gain);
}
if (r < 0)
fprintf(stderr, "WARNING: Failed to set gain.\n");
if (ppm != 0) {
r = rtlsdr_set_freq_correction(dev, ppm);
if (r < 0)
fprintf(stderr,
"WARNING: Failed to set freq. correction\n");
}
nbch = 0;
while ((argF = argv[optind]) && nbch < MAXNBCHANNELS) {
Fd[nbch] =
((int)(1000000 * atof(argF) + INTRATE / 2) / INTRATE) *
INTRATE;
optind++;
if (Fd[nbch] < 118000000 || Fd[nbch] > 138000000) {
fprintf(stderr, "WARNING: Invalid frequency %d\n",
Fd[nbch]);
continue;
}
channel[nbch].chn = nbch;
channel[nbch].Fr = (float)Fd[nbch];
nbch++;
};
if (nbch > MAXNBCHANNELS)
fprintf(stderr,
"WARNING: too many frequencies, using only the first %d\n",
MAXNBCHANNELS);
if (nbch == 0) {
fprintf(stderr, "Need a least one frequency\n");
return 1;
}
Fc = chooseFc(Fd, nbch);
if (Fc == 0)
return 1;
for (n = 0; n < nbch; n++) {
channel_t *ch = &(channel[n]);
int ind;
float AMFreq;
ch->wf = malloc(rtlMult * sizeof(float complex));
ch->dm_buffer=malloc(RTLOUTBUFSZ*sizeof(float));
if( ch->wf == NULL || ch->dm_buffer == NULL) {
fprintf(stderr, "ERROR : malloc\n");
return 1;
}
AMFreq = (ch->Fr - (float)Fc) / (float)(rtlInRate) * 2.0 * M_PI;
for (ind = 0; ind < rtlMult; ind++) {
ch->wf[ind]=cexpf(AMFreq*ind*-I)/rtlMult/127.5;
}
}
if (verbose)
fprintf(stderr, "Set center freq. to %dHz\n", (int)Fc);
r = rtlsdr_set_center_freq(dev, Fc);
if (r < 0) {
fprintf(stderr, "WARNING: Failed to set center freq.\n");
return 1;
}
fprintf(stderr, "Setting sample rate: %.4f MS/s\n", rtlInRate / 1e6);
r = rtlsdr_set_sample_rate(dev, (unsigned) rtlInRate);
if (r < 0) {
fprintf(stderr, "WARNING: Failed to set sample rate.\n");
return 1;
}
r = rtlsdr_reset_buffer(dev);
if (r < 0) {
fprintf(stderr, "WARNING: Failed to reset buffers.\n");
return 1;
}
return 0;
}
static void in_callback(unsigned char *rtlinbuff, uint32_t nread, void *ctx)
{
int n;
pthread_mutex_lock(&cbMutex);
watchdogCounter = 50;
pthread_mutex_unlock(&cbMutex);
if (nread != rtlInBufSize) {
fprintf(stderr, "warning: partial read\n");
return;
}
status=0;
// code requires this relationship set in initRtl:
// rtlInBufSize = RTLOUTBUFSZ * rtlMult * 2;
float complex vb[RTLMULTMAX];
int i = 0;
for (int m = 0; m < RTLOUTBUFSZ; m++) {
for (int ind = 0; ind < rtlMult; ind++) {
float r, g;
r = (float)rtlinbuff[i] - 127.37f; i++;
g = (float)rtlinbuff[i] - 127.37f; i++;
vb[ind]=r+g*I;
}
for (n = 0; n < nbch; n++) {
channel_t *ch = &(channel[n]);
float complex D,*wf;
wf = ch->wf;
D = 0;
for (int ind = 0; ind < rtlMult; ind++) {
D += vb[ind] * wf[ind];
}
ch->dm_buffer[m]=cabsf(D);
}
}
for (n = 0; n < nbch; n++) {
channel_t *ch = &(channel[n]);
demodMSK(ch,RTLOUTBUFSZ);
}
}
static void *readThreadEntryPoint(void *arg) {
rtlsdr_read_async(dev, in_callback, NULL, 4, rtlInBufSize);
pthread_mutex_lock(&cbMutex);
signalExit = 1;
pthread_mutex_unlock(&cbMutex);
return NULL;
}
int runRtlSample(void)
{
pthread_t readThread;
pthread_create(&readThread, NULL, readThreadEntryPoint, NULL);
pthread_mutex_lock(&cbMutex);
while (!signalExit) {
if (--watchdogCounter <= 0) {
fprintf(stderr, "No data from the SDR for 5 seconds, exiting ...\n");
runRtlCancel(); // watchdog triggered after 5 seconds of no data from SDR
break;
}
pthread_mutex_unlock(&cbMutex);
usleep(100 * 1000); // 0.1 seconds
pthread_mutex_lock(&cbMutex);
}
pthread_mutex_unlock(&cbMutex);
int count = 100; // 10 seconds
int err = 0;
// Wait on reader thread exit
while (count-- > 0 && (err = pthread_tryjoin_np(readThread, NULL))) {
usleep(100 * 1000); // 0.1 seconds
}
if (err) {
fprintf(stderr, "Receive thread termination failed, will raise SIGKILL to ensure we die!\n");
raise(SIGKILL);
return 1;
}
return 0;
}
int runRtlCancel(void) {
if (dev) {
rtlsdr_cancel_async(dev); // interrupt read_async
}
return 0;
}
int runRtlClose(void) {
int res = 0;
if (dev) {
res = rtlsdr_close(dev);
dev = NULL;
}
if (res) {
fprintf(stderr, "rtlsdr_close: %d\n", res);
}
return res;
}
#endif