Merge PR #75 (LimeSDR support);
fix conflicts; select limesdr rx antenna based on antenna metadata so it works on a mini, too.
This commit is contained in:
commit
26e3c23e6a
14
Makefile
14
Makefile
|
|
@ -18,6 +18,10 @@ ifndef HACKRF
|
|||
HACKRF := $(shell pkg-config --exists libhackrf && echo "yes" || echo "no")
|
||||
endif
|
||||
|
||||
ifndef LIMESDR
|
||||
LIMESDR := $(shell pkg-config --exists LimeSuite && echo "yes" || echo "no")
|
||||
endif
|
||||
|
||||
CPPFLAGS += -DMODES_DUMP1090_VERSION=\"$(DUMP1090_VERSION)\" -DMODES_DUMP1090_VARIANT=\"dump1090-fa\"
|
||||
|
||||
DIALECT = -std=c11
|
||||
|
|
@ -61,6 +65,13 @@ ifeq ($(HACKRF), yes)
|
|||
LIBS_SDR += $(shell pkg-config --libs libhackrf)
|
||||
endif
|
||||
|
||||
ifeq ($(LIMESDR), yes)
|
||||
SDR_OBJ += sdr_limesdr.o
|
||||
CPPFLAGS += -DENABLE_LIMESDR
|
||||
CFLAGS += $(shell pkg-config --cflags LimeSuite)
|
||||
LIBS_SDR += $(shell pkg-config --libs LimeSuite)
|
||||
endif
|
||||
|
||||
all: showconfig dump1090 view1090
|
||||
|
||||
showconfig:
|
||||
|
|
@ -69,6 +80,9 @@ showconfig:
|
|||
@echo " RTLSDR support: $(RTLSDR)" >&2
|
||||
@echo " BladeRF support: $(BLADERF)" >&2
|
||||
@echo " HackRF support: $(HACKRF)" >&2
|
||||
@echo " LimeSDR support: $(LIMESDR)" >&2
|
||||
|
||||
all: dump1090 view1090
|
||||
|
||||
%.o: %.c *.h
|
||||
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
||||
|
|
|
|||
14
README.md
14
README.md
|
|
@ -40,6 +40,11 @@ This is packaged with jessie. `sudo apt-get install librtlsdr-dev`
|
|||
|
||||
This is packaged with jessie. `sudo apt-get install libhackrf-dev`
|
||||
|
||||
### Dependencies - LimeSDR
|
||||
|
||||
You will need a build of [LimeSuite](https://github.com/myriadrf/LimeSuite).
|
||||
See detailed instruction on [the official Wiki](https://wiki.myriadrf.org/Lime_Suite) how to build and install it.
|
||||
|
||||
### Actually building it
|
||||
|
||||
Nothing special, just build it (`dpkg-buildpackage -b`)
|
||||
|
|
@ -49,7 +54,7 @@ Nothing special, just build it (`dpkg-buildpackage -b`)
|
|||
First run `prepare-wheezy-tree.sh`. This will create a package tree in
|
||||
package-wheezy/. Build in there (`dpkg-buildpackage -b`)
|
||||
|
||||
The wheezy build does not include bladeRF nor HackRF support.
|
||||
The wheezy build does not include bladeRF, HackRF, or LimeSDR support.
|
||||
|
||||
## Building manually
|
||||
|
||||
|
|
@ -60,8 +65,11 @@ install them (and a method for starting them) yourself.
|
|||
``make BLADERF=no`` will disable bladeRF support and remove the dependency on
|
||||
libbladeRF.
|
||||
|
||||
``make RTLSDR=no`` will disable rtl-sdr support and remove the dependency on
|
||||
``make RTLSDR=no`` will disable rtl-sdr support and remove the dependency on
|
||||
librtlsdr.
|
||||
|
||||
``make HACKRF=no`` will disable HackRF support and remove the dependency on
|
||||
libhackrf.
|
||||
libhackrf.
|
||||
|
||||
``make LIMESDR=no`` will disable LimeSDR support and remove the dependency on
|
||||
libLimeSuite.
|
||||
|
|
|
|||
|
|
@ -272,6 +272,9 @@ static void showHelp(void) {
|
|||
#ifdef ENABLE_HACKRF
|
||||
"ENABLE_HACKRF "
|
||||
#endif
|
||||
#ifdef ENABLE_LIMESDR
|
||||
"ENABLE_LIMESDR "
|
||||
#endif
|
||||
#ifdef SC16Q11_TABLE_BITS
|
||||
// This is a little silly, but that's how the preprocessor works..
|
||||
#define _stringize(x) #x
|
||||
|
|
|
|||
|
|
@ -280,7 +280,7 @@ typedef enum {
|
|||
//======================== structure declarations =========================
|
||||
|
||||
typedef enum {
|
||||
SDR_NONE, SDR_IFILE, SDR_RTLSDR, SDR_BLADERF, SDR_HACKRF
|
||||
SDR_NONE, SDR_IFILE, SDR_RTLSDR, SDR_BLADERF, SDR_HACKRF, SDR_LIMESDR
|
||||
} sdr_type_t;
|
||||
|
||||
// Structure representing one magnitude buffer
|
||||
|
|
|
|||
6
sdr.c
6
sdr.c
|
|
@ -30,6 +30,9 @@
|
|||
#ifdef ENABLE_HACKRF
|
||||
# include "sdr_hackrf.h"
|
||||
#endif
|
||||
#ifdef ENABLE_LIMESDR
|
||||
# include "sdr_limesdr.h"
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
const char *name;
|
||||
|
|
@ -91,6 +94,9 @@ static sdr_handler sdr_handlers[] = {
|
|||
#ifdef ENABLE_HACKRF
|
||||
{ "hackrf", SDR_HACKRF, hackRFInitConfig, hackRFShowHelp, hackRFHandleOption, hackRFOpen, hackRFRun, hackRFClose },
|
||||
#endif
|
||||
#ifdef ENABLE_LIMESDR
|
||||
{ "limesdr", SDR_LIMESDR, limesdrInitConfig, limesdrShowHelp, limesdrHandleOption, limesdrOpen, limesdrRun, limesdrClose },
|
||||
#endif
|
||||
|
||||
{ "ifile", SDR_IFILE, ifileInitConfig, ifileShowHelp, ifileHandleOption, ifileOpen, ifileRun, ifileClose },
|
||||
{ "none", SDR_NONE, noInitConfig, noShowHelp, noHandleOption, noOpen, noRun, noClose },
|
||||
|
|
|
|||
|
|
@ -0,0 +1,453 @@
|
|||
// Part of dump1090, a Mode S message decoder for RTLSDR devices.
|
||||
//
|
||||
// sdr_limesdr.c: LimeSDR dongle support
|
||||
//
|
||||
// Copyright (c) 2020 Gluttton <gluttton@ukr.net>
|
||||
//
|
||||
// This file is free software: you may copy, redistribute and/or modify it
|
||||
// under the terms of the GNU General Public License as published by the
|
||||
// Free Software Foundation, either version 2 of the License, or (at your
|
||||
// option) any later version.
|
||||
//
|
||||
// This file is distributed in the hope that it will be useful, but
|
||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
// This file incorporates work covered by the following copyright and
|
||||
// permission notice:
|
||||
//
|
||||
// Copyright (C) 2012 by Salvatore Sanfilippo <antirez@gmail.com>
|
||||
//
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
//
|
||||
// * Redistributions in binary form must reproduce the above copyright
|
||||
// notice, this list of conditions and the following disclaimer in the
|
||||
// documentation and/or other materials provided with the distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#include "dump1090.h"
|
||||
#include "sdr_limesdr.h"
|
||||
|
||||
#include <lime/LimeSuite.h>
|
||||
|
||||
static struct {
|
||||
lms_device_t *dev;
|
||||
lms_stream_t stream;
|
||||
bool is_stream_opened;
|
||||
bool is_stop;
|
||||
char verbosity;
|
||||
size_t oversample;
|
||||
float gain;
|
||||
float lpfbw;
|
||||
float bw;
|
||||
lms_info_str_t serial;
|
||||
int bytes_in_sample;
|
||||
iq_convert_fn converter;
|
||||
struct converter_state *converter_state;
|
||||
} LimeSDR;
|
||||
|
||||
static void limesdrLogHandler(int lvl, const char *msg)
|
||||
{
|
||||
if (lvl > LimeSDR.verbosity) {
|
||||
return;
|
||||
}
|
||||
|
||||
FILE *out = NULL;
|
||||
switch (lvl) {
|
||||
default:
|
||||
case LMS_LOG_DEBUG:
|
||||
case LMS_LOG_INFO:
|
||||
out = stdout;
|
||||
break;
|
||||
case LMS_LOG_WARNING:
|
||||
case LMS_LOG_ERROR:
|
||||
case LMS_LOG_CRITICAL:
|
||||
out = stderr;
|
||||
break;
|
||||
}
|
||||
|
||||
fprintf(out, "limesdr: %s\n", msg);
|
||||
}
|
||||
|
||||
void limesdrInitConfig()
|
||||
{
|
||||
LimeSDR.dev = NULL;
|
||||
LimeSDR.stream.channel = 0;
|
||||
LimeSDR.stream.fifoSize = 1024 * 1024;
|
||||
LimeSDR.stream.throughputVsLatency = 1.0; // best throughput
|
||||
LimeSDR.stream.isTx = false;
|
||||
LimeSDR.stream.dataFmt = LMS_FMT_I16; // should be matched with conveter
|
||||
LimeSDR.is_stream_opened = false;
|
||||
LimeSDR.is_stop = false;
|
||||
LimeSDR.verbosity = LMS_LOG_INFO;
|
||||
LimeSDR.oversample = 0; // default oversample
|
||||
LimeSDR.gain = 0.75;
|
||||
LimeSDR.lpfbw = 2400000.0;
|
||||
LimeSDR.bw = 2.5e6; // the minimal supported value
|
||||
LimeSDR.serial[0] = '\0';
|
||||
LimeSDR.bytes_in_sample = 2 * sizeof(int16_t); // hardcoded for LMS_FMT_I16
|
||||
|
||||
LMS_RegisterLogHandler(limesdrLogHandler);
|
||||
}
|
||||
|
||||
void limesdrShowHelp()
|
||||
{
|
||||
printf(" limesdr-specific options (use with --device-type limesdr)\n");
|
||||
printf("\n");
|
||||
printf("--limesdr-verbosity set verbosity level for LimeSDR messages\n");
|
||||
printf("--limesdr-serial serial number of desired device\n");
|
||||
printf("--limesdr-channel set number of an RX channel\n");
|
||||
printf("--limesdr-oversample set RF oversampling ratio\n");
|
||||
printf("--limesdr-gain set normalized gain\n");
|
||||
printf("--limesdr-lpfbw set LPF bandwidth\n");
|
||||
printf("--limesdr-bw set bandwidth\n");
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
bool limesdrHandleOption(int argc, char **argv, int *jptr)
|
||||
{
|
||||
int j = *jptr;
|
||||
bool more = (j + 1 < argc);
|
||||
|
||||
if (!strcmp(argv[j], "--limesdr-verbosity") && more) {
|
||||
LimeSDR.verbosity = atoi(argv[++j]);
|
||||
} else if (!strcmp(argv[j], "--limesdr-serial") && more) {
|
||||
strcpy(LimeSDR.serial, argv[++j]);
|
||||
} else if (!strcmp(argv[j], "--limesdr-channel") && more) {
|
||||
LimeSDR.stream.channel = atoi(argv[++j]);
|
||||
} else if (!strcmp(argv[j], "--limesdr-oversample") && more) {
|
||||
LimeSDR.oversample = atoi(argv[++j]);
|
||||
} else if (!strcmp(argv[j], "--limesdr-gain") && more) {
|
||||
LimeSDR.gain = atof(argv[++j]);
|
||||
} else if (!strcmp(argv[j], "--limesdr-lpfbw") && more) {
|
||||
LimeSDR.lpfbw = atof(argv[++j]);
|
||||
} else if (!strcmp(argv[j], "--limesdr-bw") && more) {
|
||||
LimeSDR.bw = atof(argv[++j]);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
*jptr = j;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static size_t selectAntenna()
|
||||
{
|
||||
int result = LMS_PATH_AUTO;
|
||||
lms_name_t *names = NULL;
|
||||
|
||||
int numAntennas = LMS_GetAntennaList(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, NULL);
|
||||
if (numAntennas <= 0) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to get antenna list");
|
||||
goto done;
|
||||
}
|
||||
|
||||
names = calloc(numAntennas, sizeof(lms_name_t));
|
||||
if (!names) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to get antenna list");
|
||||
goto done;
|
||||
}
|
||||
|
||||
numAntennas = LMS_GetAntennaList(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, names);
|
||||
if (numAntennas < 0) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to get antenna list");
|
||||
goto done;
|
||||
}
|
||||
|
||||
for (int i = 0; i < numAntennas; ++i) {
|
||||
lms_range_t range;
|
||||
if (LMS_GetAntennaBW(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, i, &range) < 0) {
|
||||
fprintf(stderr, "limesdr: unable to get antenna bandwidth for antenna %d (%s)", i, names[i]);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (range.min <= Modes.freq && range.max >= Modes.freq) {
|
||||
fprintf(stderr, "limesdr: selected rx antenna %d (%s) with bandwidth %.1f .. %.1fMHz", i, names[i], range.min / 1e6, range.max / 1e6);
|
||||
result = i;
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
|
||||
done:
|
||||
if (result == LMS_PATH_AUTO)
|
||||
limesdrLogHandler(LMS_LOG_INFO, "limesdr: no suitable antenna found, letting LimeSuite do automatic antenna selection");
|
||||
if (names)
|
||||
free(names);
|
||||
return result;
|
||||
}
|
||||
|
||||
bool limesdrOpen(void)
|
||||
{
|
||||
const size_t devCountMax = 8;
|
||||
lms_info_str_t list[devCountMax];
|
||||
const int devCount = LMS_GetDeviceList(list);
|
||||
if (devCount < 0) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to get a number of connected devices");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (devCount < 1) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "no connected devices");
|
||||
goto error;
|
||||
}
|
||||
|
||||
limesdrLogHandler(LMS_LOG_INFO, "connected devices:");
|
||||
for (int i = 0; i < devCount; ++i) {
|
||||
limesdrLogHandler(LMS_LOG_INFO, list[i]);
|
||||
}
|
||||
|
||||
bool isDevMatched = !strlen(LimeSDR.serial);
|
||||
int devIndex = 0;
|
||||
const char *serialTag = "serial=";
|
||||
for (int i = 0; i < devCount && !isDevMatched; ++i) {
|
||||
const char *serial = strstr(list[i], serialTag);
|
||||
if (serial) {
|
||||
if (strstr(serial + strlen(serialTag), LimeSDR.serial)) {
|
||||
isDevMatched = true;
|
||||
devIndex = i;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isDevMatched) {
|
||||
limesdrLogHandler(LMS_LOG_INFO, "selected device:");
|
||||
limesdrLogHandler(LMS_LOG_INFO, list[devIndex]);
|
||||
} else {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to find desired device");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_Open(&LimeSDR.dev, list[devIndex], NULL) ) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to open device");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_Init(LimeSDR.dev)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to initialize device");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_EnableChannel(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, true)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to enable RX channel");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_SetAntenna(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, selectAntenna())) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to set RF port");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_SetLOFrequency(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, Modes.freq)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to set frequency");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_SetSampleRate(LimeSDR.dev, Modes.sample_rate, LimeSDR.oversample)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to set sampling rate");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_SetNormalizedGain(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, LimeSDR.gain)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to set gain");
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_SetLPFBW(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, LimeSDR.lpfbw)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to set LP filter");
|
||||
goto error;
|
||||
}
|
||||
|
||||
LimeSDR.is_stream_opened = true;
|
||||
if (LMS_SetupStream(LimeSDR.dev, &LimeSDR.stream)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to setup stream");
|
||||
LimeSDR.is_stream_opened = false;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (LMS_Calibrate(LimeSDR.dev, LMS_CH_RX, LimeSDR.stream.channel, LimeSDR.bw, 0)) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "unable to calibrate device");
|
||||
goto error;
|
||||
}
|
||||
|
||||
LimeSDR.converter = init_converter(INPUT_SC16,
|
||||
Modes.sample_rate,
|
||||
Modes.dc_filter,
|
||||
&LimeSDR.converter_state);
|
||||
if (!LimeSDR.converter) {
|
||||
limesdrLogHandler(LMS_LOG_ERROR, "can't initialize sample converter");
|
||||
goto error;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
error:
|
||||
if (LimeSDR.is_stream_opened) {
|
||||
LMS_DestroyStream(LimeSDR.dev, &LimeSDR.stream);
|
||||
LimeSDR.is_stream_opened = false;
|
||||
}
|
||||
|
||||
if (LimeSDR.dev) {
|
||||
LMS_Close(LimeSDR.dev);
|
||||
LimeSDR.dev = NULL;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
static struct timespec limesdr_thread_cpu;
|
||||
|
||||
static void limesdrCallback(unsigned char *buf, uint32_t len, void *ctx)
|
||||
{
|
||||
struct mag_buf *outbuf;
|
||||
struct mag_buf *lastbuf;
|
||||
uint32_t slen;
|
||||
unsigned next_free_buffer;
|
||||
unsigned free_bufs;
|
||||
unsigned block_duration;
|
||||
|
||||
static int dropping = 0;
|
||||
static uint64_t sampleCounter = 0;
|
||||
|
||||
MODES_NOTUSED(ctx);
|
||||
|
||||
// Lock the data buffer variables before accessing them
|
||||
pthread_mutex_lock(&Modes.data_mutex);
|
||||
if (Modes.exit) {
|
||||
LimeSDR.is_stop = true; // ask our caller to exit
|
||||
}
|
||||
|
||||
next_free_buffer = (Modes.first_free_buffer + 1) % MODES_MAG_BUFFERS;
|
||||
outbuf = &Modes.mag_buffers[Modes.first_free_buffer];
|
||||
lastbuf = &Modes.mag_buffers[(Modes.first_free_buffer + MODES_MAG_BUFFERS - 1) % MODES_MAG_BUFFERS];
|
||||
free_bufs = (Modes.first_filled_buffer - next_free_buffer + MODES_MAG_BUFFERS) % MODES_MAG_BUFFERS;
|
||||
|
||||
// Paranoia! Unlikely, but let's go for belt and suspenders here
|
||||
|
||||
if (len != MODES_RTL_BUF_SIZE) {
|
||||
limesdrLogHandler(LMS_LOG_WARNING, "device gave us a block with an unusual size");
|
||||
|
||||
if (len > MODES_RTL_BUF_SIZE) {
|
||||
// wat?! Discard the start.
|
||||
unsigned discard = (len - MODES_RTL_BUF_SIZE + 1) / LimeSDR.bytes_in_sample;
|
||||
outbuf->dropped += discard;
|
||||
buf += discard * LimeSDR.bytes_in_sample;
|
||||
len -= discard * LimeSDR.bytes_in_sample;
|
||||
}
|
||||
}
|
||||
|
||||
slen = len / LimeSDR.bytes_in_sample; // Drops any trailing odd sample, that's OK
|
||||
|
||||
if (free_bufs == 0 || (dropping && free_bufs < MODES_MAG_BUFFERS/2)) {
|
||||
// FIFO is full. Drop this block.
|
||||
dropping = 1;
|
||||
outbuf->dropped += slen;
|
||||
sampleCounter += slen;
|
||||
pthread_mutex_unlock(&Modes.data_mutex);
|
||||
return;
|
||||
}
|
||||
|
||||
dropping = 0;
|
||||
pthread_mutex_unlock(&Modes.data_mutex);
|
||||
|
||||
// Compute the sample timestamp and system timestamp for the start of the block
|
||||
outbuf->sampleTimestamp = sampleCounter * 12e6 / Modes.sample_rate;
|
||||
sampleCounter += slen;
|
||||
|
||||
// Get the approx system time for the start of this block
|
||||
block_duration = 1e3 * slen / Modes.sample_rate;
|
||||
outbuf->sysTimestamp = mstime() - block_duration;
|
||||
|
||||
// Copy trailing data from last block (or reset if not valid)
|
||||
if (outbuf->dropped == 0) {
|
||||
memcpy(outbuf->data, lastbuf->data + lastbuf->length, Modes.trailing_samples * sizeof(uint16_t));
|
||||
} else {
|
||||
memset(outbuf->data, 0, Modes.trailing_samples * sizeof(uint16_t));
|
||||
}
|
||||
|
||||
// Convert the new data
|
||||
outbuf->length = slen;
|
||||
LimeSDR.converter(buf, &outbuf->data[Modes.trailing_samples], slen, LimeSDR.converter_state, &outbuf->mean_level, &outbuf->mean_power);
|
||||
|
||||
// Push the new data to the demodulation thread
|
||||
pthread_mutex_lock(&Modes.data_mutex);
|
||||
|
||||
Modes.mag_buffers[next_free_buffer].dropped = 0;
|
||||
Modes.mag_buffers[next_free_buffer].length = 0; // just in case
|
||||
Modes.first_free_buffer = next_free_buffer;
|
||||
|
||||
// accumulate CPU while holding the mutex, and restart measurement
|
||||
end_cpu_timing(&limesdr_thread_cpu, &Modes.reader_cpu_accumulator);
|
||||
start_cpu_timing(&limesdr_thread_cpu);
|
||||
|
||||
pthread_cond_signal(&Modes.data_cond);
|
||||
pthread_mutex_unlock(&Modes.data_mutex);
|
||||
}
|
||||
|
||||
void limesdrRun()
|
||||
{
|
||||
if (!LimeSDR.dev) {
|
||||
return;
|
||||
}
|
||||
|
||||
int16_t *buffer = malloc(MODES_RTL_BUF_SIZE);
|
||||
|
||||
LMS_StartStream(&LimeSDR.stream);
|
||||
|
||||
start_cpu_timing(&limesdr_thread_cpu);
|
||||
|
||||
while (!LimeSDR.is_stop) {
|
||||
int sampleCnt = LMS_RecvStream(&LimeSDR.stream, buffer, MODES_RTL_BUF_SIZE / LimeSDR.bytes_in_sample, NULL, 1000);
|
||||
if (sampleCnt) {
|
||||
limesdrCallback((unsigned char *)buffer, sampleCnt * LimeSDR.bytes_in_sample, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
if (!Modes.exit) {
|
||||
limesdrLogHandler(LMS_LOG_WARNING, "async read returned unexpectedly");
|
||||
}
|
||||
|
||||
free(buffer);
|
||||
LMS_StopStream(&LimeSDR.stream);
|
||||
}
|
||||
|
||||
void limesdrClose()
|
||||
{
|
||||
if (LimeSDR.converter) {
|
||||
cleanup_converter(LimeSDR.converter_state);
|
||||
LimeSDR.converter = NULL;
|
||||
LimeSDR.converter_state = NULL;
|
||||
}
|
||||
|
||||
LMS_StopStream(&LimeSDR.stream);
|
||||
|
||||
if (LimeSDR.is_stream_opened) {
|
||||
LMS_DestroyStream(LimeSDR.dev, &LimeSDR.stream);
|
||||
LimeSDR.is_stream_opened = false;
|
||||
}
|
||||
|
||||
if (LimeSDR.dev) {
|
||||
LMS_Close(LimeSDR.dev);
|
||||
LimeSDR.dev = NULL;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
// Part of dump1090, a Mode S message decoder for RTLSDR devices.
|
||||
//
|
||||
// sdr_limesdr.h: LimeSDR dongle support (header)
|
||||
//
|
||||
// Copyright (c) 2020 Gluttton <gluttton@ukr.net>
|
||||
//
|
||||
// This file is free software: you may copy, redistribute and/or modify it
|
||||
// under the terms of the GNU General Public License as published by the
|
||||
// Free Software Foundation, either version 2 of the License, or (at your
|
||||
// option) any later version.
|
||||
//
|
||||
// This file is distributed in the hope that it will be useful, but
|
||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#ifndef SDR_LIMESDR_H
|
||||
#define SDR_LIMESDR_H
|
||||
|
||||
void limesdrInitConfig();
|
||||
void limesdrShowHelp();
|
||||
bool limesdrOpen();
|
||||
void limesdrRun();
|
||||
void limesdrClose();
|
||||
bool limesdrHandleOption(int argc, char **argv, int *jptr);
|
||||
|
||||
#endif
|
||||
Loading…
Reference in New Issue