/*! * \file channel.h * \brief Interface of a GNSS channel. * \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com * Luis Esteve, 2011. luis(at)epsilon-formacion.com * * It holds blocks for acquisition, tracking, * navigation data extraction and pseudorange calculation. * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2018 (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_CHANNEL_H_ #define GNSS_SDR_CHANNEL_H_ #include "channel_fsm.h" #include "channel_interface.h" #include "channel_msg_receiver_cc.h" #include "concurrent_queue.h" #include "gnss_signal.h" #include "gnss_synchro.h" #include #include #include #include #include #include #include class ConfigurationInterface; class AcquisitionInterface; class TrackingInterface; class TelemetryDecoderInterface; /*! * \brief This class represents a GNSS channel. It wraps an AcquisitionInterface, * a Tracking Interface and a TelemetryDecoderInterface, and handles * their interaction through a Finite State Machine * */ class Channel : public ChannelInterface { public: //! Constructor Channel(ConfigurationInterface* configuration, uint32_t channel, std::shared_ptr acq, std::shared_ptr trk, std::shared_ptr nav, std::string role, std::string implementation, std::shared_ptr> queue); virtual ~Channel(); //!< Virtual destructor void connect(gr::top_block_sptr top_block) override; //!< connects the tracking block to the top_block and to the telemetry void disconnect(gr::top_block_sptr top_block) override; gr::basic_block_sptr get_left_block() override; //!< gets the gnuradio tracking block pointer gr::basic_block_sptr get_left_block_trk() override; //!< gets the gnuradio tracking block pointer gr::basic_block_sptr get_left_block_acq() override; //!< gets the gnuradio tracking block pointer gr::basic_block_sptr get_right_block() override; inline std::string role() override { return role_; } //! Returns "Channel" inline std::string implementation() override { return implementation_; } inline size_t item_size() override { return 0; } inline Gnss_Signal get_signal() const override { return gnss_signal_; } void start_acquisition() override; //!< Start the State Machine void stop_channel() override; //!< Stop the State Machine void set_signal(const Gnss_Signal& gnss_signal_) override; //!< Sets the channel GNSS signal inline std::shared_ptr acquisition() { return acq_; } inline std::shared_ptr tracking() { return trk_; } inline std::shared_ptr telemetry() { return nav_; } void msg_handler_events(pmt::pmt_t msg); private: channel_msg_receiver_cc_sptr channel_msg_rx; std::shared_ptr acq_; std::shared_ptr trk_; std::shared_ptr nav_; std::string role_; std::string implementation_; bool flag_enable_fpga; uint32_t channel_; Gnss_Synchro gnss_synchro_{}; Gnss_Signal gnss_signal_; bool connected_; bool repeat_; std::shared_ptr channel_fsm_; std::shared_ptr> queue_; std::mutex mx; }; #endif // GNSS_SDR_CHANNEL_H_