/*! * \file uhd_signal_source.h * \brief Interface for the Universal Hardware Driver signal source * \author Javier Arribas, 2012. jarribas(at)cttc.es * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2015 (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. * * 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 . * * ------------------------------------------------------------------------- */ #ifndef GNSS_SDR_UHD_SIGNAL_SOURCE_H_ #define GNSS_SDR_UHD_SIGNAL_SOURCE_H_ #include #include #include #include #include #include #include #include "gnss_block_interface.h" class ConfigurationInterface; /*! * \brief This class reads samples from a UHD device (see http://code.ettus.com/redmine/ettus/projects/uhd/wiki) */ class UhdSignalSource: public GNSSBlockInterface { public: UhdSignalSource(ConfigurationInterface* configuration, std::string role, unsigned int in_stream, unsigned int out_stream, boost::shared_ptr queue); virtual ~UhdSignalSource(); inline std::string role() override { return role_; } /*! * \brief Returns "UHD_Signal_Source" */ inline std::string implementation() override { return "UHD_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; gr::basic_block_sptr get_right_block(int RF_channel) override; private: std::string role_; unsigned int in_stream_; unsigned int out_stream_; gr::uhd::usrp_source::sptr uhd_source_; // UHD SETTINGS uhd::stream_args_t uhd_stream_args_; std::string device_address_; double sample_rate_; int RF_channels_; std::string item_type_; size_t item_size_; std::string subdevice_; std::string clock_source_; std::vector freq_; std::vector gain_; std::vector IF_bandwidth_hz_; std::vector samples_; std::vector dump_; std::vector dump_filename_; std::vector> valve_; std::vector file_sink_; boost::shared_ptr queue_; }; #endif /*GNSS_SDR_UHD_SIGNAL_SOURCE_H_*/