1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-07-04 19:03:14 +00:00
gnss-sdr/src/algorithms/signal_source/adapters/osmosdr_signal_source.h

113 lines
2.8 KiB
C
Raw Normal View History

/*!
* \file osmosdr_signal_source.h
* \brief Signal source wrapper for OsmoSDR-compatible front-ends, such as
* HackRF or Realtek's RTL2832U-based USB dongle DVB-T receivers
* (see https://osmocom.org/projects/rtl-sdr/wiki for more information)
* \author Javier Arribas, 2012. jarribas(at)cttc.es
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
*
* This file is part of GNSS-SDR.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* -------------------------------------------------------------------------
*/
#ifndef GNSS_SDR_OSMOSDR_SIGNAL_SOURCE_H
#define GNSS_SDR_OSMOSDR_SIGNAL_SOURCE_H
#include "concurrent_queue.h"
#include "gnss_block_interface.h"
#include <gnuradio/blocks/file_sink.h>
#include <pmt/pmt.h>
2018-12-11 00:56:25 +00:00
#include <cstdint>
#include <memory>
#include <osmosdr/source.h>
#include <stdexcept>
#include <string>
2020-04-02 22:41:51 +00:00
#if GNURADIO_USES_STD_POINTERS
#else
#include <boost/shared_ptr.hpp>
#endif
class ConfigurationInterface;
/*!
* \brief This class reads samples OsmoSDR-compatible front-ends, such as
* HackRF or Realtek's RTL2832U-based USB dongle DVB-T receivers
* (see https://osmocom.org/projects/rtl-sdr/wiki)
*/
class OsmosdrSignalSource : public GNSSBlockInterface
{
public:
2016-05-02 21:46:30 +00:00
OsmosdrSignalSource(ConfigurationInterface* configuration,
2018-12-10 21:59:10 +00:00
const std::string& role, unsigned int in_stream,
unsigned int out_stream, Concurrent_Queue<pmt::pmt_t>* queue);
~OsmosdrSignalSource() = default;
inline std::string role() override
{
return role_;
}
/*!
* \brief Returns "Osmosdr_Signal_Source"
*/
inline std::string implementation() override
{
return "Osmosdr_Signal_Source";
}
inline size_t item_size() override
{
return item_size_;
}
void connect(gr::top_block_sptr top_block) override;
void disconnect(gr::top_block_sptr top_block) override;
gr::basic_block_sptr get_left_block() override;
gr::basic_block_sptr get_right_block() override;
private:
void driver_instance();
2020-06-24 20:27:51 +00:00
osmosdr::source::sptr osmosdr_source_;
#if GNURADIO_USES_STD_POINTERS
std::shared_ptr<gr::block> valve_;
#else
boost::shared_ptr<gr::block> valve_;
#endif
gr::blocks::file_sink::sptr file_sink_;
std::string role_;
2020-06-24 20:27:51 +00:00
std::string item_type_;
std::string dump_filename_;
std::string osmosdr_args_;
std::string antenna_;
// Front-end settings
double sample_rate_;
double freq_;
double gain_;
double if_gain_;
double rf_gain_;
size_t item_size_;
2018-12-11 00:56:25 +00:00
int64_t samples_;
2020-06-24 20:27:51 +00:00
unsigned int in_stream_;
unsigned int out_stream_;
2020-06-24 20:27:51 +00:00
bool AGC_enabled_;
bool dump_;
};
#endif // GNSS_SDR_OSMOSDR_SIGNAL_SOURCE_H