1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-14 01:06:51 +00:00
gnss-sdr/src/algorithms/signal_source/adapters/plutosdr_signal_source.h

122 lines
3.3 KiB
C
Raw Normal View History

2017-10-30 21:31:20 +00:00
/*!
* \file plutosdr_signal_source.h
* \brief Signal source for PlutoSDR
* \author Rodrigo Muñoz, 2017, rmunozl(at)inacap.cl
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
2017-10-30 21:31:20 +00:00
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
*
* This file is part of GNSS-SDR.
*
* GNSS-SDR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GNSS-SDR 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 GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
2017-10-30 21:31:20 +00:00
*
* -------------------------------------------------------------------------
*/
2017-10-29 05:51:22 +00:00
#ifndef GNSS_SDR_PLUTOSDR_SIGNAL_SOURCE_H_
#define GNSS_SDR_PLUTOSDR_SIGNAL_SOURCE_H_
#include "gnss_block_interface.h"
2017-10-29 05:51:22 +00:00
#include <boost/shared_ptr.hpp>
#include <gnuradio/blocks/file_sink.h>
2019-05-26 18:28:53 +00:00
#if GRIIO_INCLUDE_HAS_GNURADIO
2017-10-31 12:05:15 +00:00
#include <gnuradio/iio/pluto_source.h>
2019-05-26 18:28:53 +00:00
#else
#include <iio/pluto_source.h>
#endif
#include "concurrent_queue.h"
#include <pmt/pmt.h>
#include <memory>
#include <string>
2017-10-29 05:51:22 +00:00
class ConfigurationInterface;
/*!
*/
class PlutosdrSignalSource : public GNSSBlockInterface
2017-10-29 05:51:22 +00:00
{
public:
PlutosdrSignalSource(ConfigurationInterface* configuration,
2018-12-10 21:59:10 +00:00
const std::string& role, unsigned int in_stream,
unsigned int out_stream, std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> queue);
2017-10-29 05:51:22 +00:00
~PlutosdrSignalSource() = default;
2017-10-29 05:51:22 +00:00
2017-10-30 21:31:20 +00:00
std::string role() override
2017-10-29 05:51:22 +00:00
{
return role_;
}
/*!
* \brief Returns "Plutosdr_Signal_Source"
*/
2017-10-30 21:31:20 +00:00
std::string implementation() override
2017-10-29 05:51:22 +00:00
{
return "Plutosdr_Signal_Source";
}
2017-10-30 21:31:20 +00:00
size_t item_size() override
2017-10-29 05:51:22 +00:00
{
return item_size_;
}
2017-10-30 21:31:20 +00:00
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;
2017-10-29 05:51:22 +00:00
private:
std::string role_;
// Front-end settings
std::string uri_; // device direction
unsigned long freq_; // frequency of local oscilator
2017-10-30 21:31:20 +00:00
unsigned long sample_rate_;
unsigned long bandwidth_;
unsigned long buffer_size_; // reception buffer
2017-10-30 21:31:20 +00:00
bool quadrature_;
bool rf_dc_;
bool bb_dc_;
std::string gain_mode_;
double rf_gain_;
std::string filter_file_;
bool filter_auto_;
std::string filter_source_;
std::string filter_filename_;
float Fpass_;
float Fstop_;
2017-10-29 05:51:22 +00:00
unsigned int in_stream_;
unsigned int out_stream_;
std::string item_type_;
size_t item_size_;
long samples_;
bool dump_;
std::string dump_filename_;
2017-10-30 21:31:20 +00:00
gr::iio::pluto_source::sptr plutosdr_source_;
2017-10-29 05:51:22 +00:00
boost::shared_ptr<gr::block> valve_;
gr::blocks::file_sink::sptr file_sink_;
std::shared_ptr<Concurrent_Queue<pmt::pmt_t>> queue_;
2017-10-29 05:51:22 +00:00
};
2019-09-07 14:42:22 +00:00
#endif // GNSS_SDR_PLUTOSDR_SIGNAL_SOURCE_H_