gnss-sdr/src/algorithms/signal_source/adapters/rtl_tcp_signal_source.cc

198 lines
6.5 KiB
C++
Raw Normal View History

2015-05-08 06:59:38 +00:00
/*!
* \file rtl_tcp_signal_source.cc
* \brief Signal source for the Realtek RTL2832U USB dongle DVB-T receiver
* over TCP.
* (see https://osmocom.org/projects/rtl-sdr/wiki for more information)
2015-05-08 06:59:38 +00:00
* \author Anthony Arnold, 2015. anthony.arnold(at)uqconnect.edu.au
*
2020-07-28 14:57:15 +00:00
* -----------------------------------------------------------------------------
2015-05-08 06:59:38 +00:00
*
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
2015-05-08 06:59:38 +00:00
* This file is part of GNSS-SDR.
*
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later
2015-05-08 06:59:38 +00:00
*
2020-07-28 14:57:15 +00:00
* -----------------------------------------------------------------------------
2015-05-08 06:59:38 +00:00
*/
#include "rtl_tcp_signal_source.h"
#include "GPS_L1_CA.h"
2015-05-08 06:59:38 +00:00
#include "configuration_interface.h"
#include "gnss_sdr_string_literals.h"
2015-05-08 06:59:38 +00:00
#include "gnss_sdr_valve.h"
#include <glog/logging.h>
#include <cstdint>
#include <iostream>
#include <utility>
using namespace std::string_literals;
2015-05-08 06:59:38 +00:00
RtlTcpSignalSource::RtlTcpSignalSource(const ConfigurationInterface* configuration,
const std::string& role,
unsigned int in_stream,
unsigned int out_stream,
Concurrent_Queue<pmt::pmt_t>* queue)
: SignalSourceBase(configuration, role, "RtlTcp_Signal_Source"s), in_stream_(in_stream), out_stream_(out_stream)
2015-05-08 06:59:38 +00:00
{
// DUMP PARAMETERS
const std::string default_dump_file("./data/signal_source.dat");
const std::string default_item_type("gr_complex");
2020-07-03 19:37:57 +00:00
samples_ = configuration->property(role + ".samples", static_cast<uint64_t>(0));
2015-05-08 06:59:38 +00:00
dump_ = configuration->property(role + ".dump", false);
dump_filename_ = configuration->property(role + ".dump_filename",
default_dump_file);
2015-05-08 06:59:38 +00:00
2018-03-25 17:47:28 +00:00
// rtl_tcp PARAMETERS
const std::string default_address("127.0.0.1");
const int16_t default_port = 1234;
2015-05-08 06:59:38 +00:00
AGC_enabled_ = configuration->property(role + ".AGC_enabled", true);
freq_ = configuration->property(role + ".freq", static_cast<int>(GPS_L1_FREQ_HZ));
gain_ = configuration->property(role + ".gain", 40);
rf_gain_ = configuration->property(role + ".rf_gain", 40.0);
if_gain_ = configuration->property(role + ".if_gain", 40);
sample_rate_ = configuration->property(role + ".sampling_frequency", 2000000);
2015-05-08 06:59:38 +00:00
item_type_ = configuration->property(role + ".item_type", default_item_type);
address_ = configuration->property(role + ".address", default_address);
port_ = configuration->property(role + ".port", default_port);
2015-05-10 12:57:43 +00:00
flip_iq_ = configuration->property(role + ".flip_iq", false);
2015-05-08 06:59:38 +00:00
if (item_type_ == "short")
2015-05-08 06:59:38 +00:00
{
item_size_ = sizeof(int16_t);
2015-05-08 06:59:38 +00:00
}
else if (item_type_ == "gr_complex")
2015-05-08 06:59:38 +00:00
{
item_size_ = sizeof(gr_complex);
// 1. Make the gr block
MakeBlock();
2015-05-08 06:59:38 +00:00
// 2 set sampling rate
signal_source_->set_sample_rate(sample_rate_);
// 3. set rx frequency
signal_source_->set_frequency(freq_);
2015-05-10 12:57:43 +00:00
// 4. set rx gain
2015-05-09 02:53:17 +00:00
signal_source_->set_agc_mode(true);
2015-05-10 12:57:43 +00:00
if (this->AGC_enabled_ == true)
2016-05-02 21:46:30 +00:00
{
std::cout << "AGC enabled\n";
2016-05-02 21:46:30 +00:00
LOG(INFO) << "AGC enabled";
signal_source_->set_agc_mode(true);
}
2015-05-08 06:59:38 +00:00
else
2016-05-02 21:46:30 +00:00
{
std::cout << "AGC disabled\n";
2016-05-02 21:46:30 +00:00
LOG(INFO) << "AGC disabled";
signal_source_->set_agc_mode(false);
std::cout << "Setting gain to " << gain_ << '\n';
2016-05-02 21:46:30 +00:00
LOG(INFO) << "Setting gain to " << gain_;
signal_source_->set_gain(gain_);
std::cout << "Setting IF gain to " << if_gain_ << '\n';
2016-05-02 21:46:30 +00:00
LOG(INFO) << "Setting IF gain to " << if_gain_;
signal_source_->set_if_gain(if_gain_);
}
2015-05-08 06:59:38 +00:00
}
else
{
LOG(WARNING) << item_type_ << " unrecognized item type. Using short.";
item_size_ = sizeof(int16_t);
2015-05-08 06:59:38 +00:00
}
2019-02-11 16:51:20 +00:00
if (samples_ != 0ULL)
2015-05-08 06:59:38 +00:00
{
DLOG(INFO) << "Send STOP signal after " << samples_ << " samples";
valve_ = gnss_sdr_make_valve(item_size_, samples_, queue);
2015-05-08 06:59:38 +00:00
DLOG(INFO) << "valve(" << valve_->unique_id() << ")";
}
if (dump_)
{
DLOG(INFO) << "Dumping output into file " << dump_filename_;
file_sink_ = gr::blocks::file_sink::make(item_size_, dump_filename_.c_str());
DLOG(INFO) << "file_sink(" << file_sink_->unique_id() << ")";
}
if (in_stream_ > 0)
{
LOG(ERROR) << "A signal source does not have an input stream";
}
if (out_stream_ > 1)
{
LOG(ERROR) << "This implementation only supports one output stream";
}
2015-05-08 06:59:38 +00:00
}
void RtlTcpSignalSource::MakeBlock()
{
try
{
std::cout << "Connecting to " << address_ << ":" << port_ << '\n';
LOG(INFO) << "Connecting to " << address_ << ":" << port_;
signal_source_ = rtl_tcp_make_signal_source_c(address_, port_, flip_iq_);
}
catch (const boost::exception& e)
{
LOG(WARNING) << "Boost exception: " << boost::diagnostic_information(e);
throw std::runtime_error("Failure connecting to the device");
}
}
2016-05-02 21:46:30 +00:00
void RtlTcpSignalSource::connect(gr::top_block_sptr top_block)
{
2019-02-11 16:51:20 +00:00
if (samples_ != 0ULL)
2016-05-02 21:46:30 +00:00
{
top_block->connect(signal_source_, 0, valve_, 0);
2016-05-02 21:46:30 +00:00
DLOG(INFO) << "connected rtl tcp source to valve";
if (dump_)
2016-05-02 21:46:30 +00:00
{
top_block->connect(valve_, 0, file_sink_, 0);
DLOG(INFO) << "connected valve to file sink";
}
}
else if (dump_)
2016-05-02 21:46:30 +00:00
{
top_block->connect(signal_source_, 0, file_sink_, 0);
DLOG(INFO) << "connected rtl tcp source to file sink";
}
2015-05-08 06:59:38 +00:00
}
2016-05-02 21:46:30 +00:00
void RtlTcpSignalSource::disconnect(gr::top_block_sptr top_block)
{
2019-02-11 16:51:20 +00:00
if (samples_ != 0ULL)
2016-05-02 21:46:30 +00:00
{
top_block->disconnect(signal_source_, 0, valve_, 0);
if (dump_)
2016-05-02 21:46:30 +00:00
{
top_block->disconnect(valve_, 0, file_sink_, 0);
}
}
else if (dump_)
2016-05-02 21:46:30 +00:00
{
top_block->disconnect(signal_source_, 0, file_sink_, 0);
}
2015-05-08 06:59:38 +00:00
}
2016-05-02 21:46:30 +00:00
gr::basic_block_sptr RtlTcpSignalSource::get_left_block()
{
2015-05-08 06:59:38 +00:00
LOG(WARNING) << "Trying to get signal source left block.";
return gr::basic_block_sptr();
}
2016-05-02 21:46:30 +00:00
gr::basic_block_sptr RtlTcpSignalSource::get_right_block()
{
2019-02-11 16:51:20 +00:00
if (samples_ != 0ULL)
2016-05-02 21:46:30 +00:00
{
return valve_;
}
return signal_source_;
2015-05-08 06:59:38 +00:00
}