/*! * \file galileo_e5a_telemetry_decoder.h * \brief Interface of an adapter of a GALILEO E5a FNAV data decoder block * to a TelemetryDecoderInterface * \author Marc Sales, 2014. marcsales92(at)gmail.com * \based on work from: * * * * ------------------------------------------------------------------------- * * 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_GALILEO_E5A_TELEMETRY_DECODER_H #define GNSS_SDR_GALILEO_E5A_TELEMETRY_DECODER_H #include "galileo_telemetry_decoder_gs.h" #include "gnss_satellite.h" // for Gnss_Satellite #include "telemetry_decoder_interface.h" #include // for basic_block_sptr, top_block_sptr #include // for size_t #include class ConfigurationInterface; /*! * \brief This class implements a NAV data decoder for Galileo INAV frames in E1B radio link */ class GalileoE5aTelemetryDecoder : public TelemetryDecoderInterface { public: GalileoE5aTelemetryDecoder(ConfigurationInterface* configuration, const std::string& role, unsigned int in_streams, unsigned int out_streams); ~GalileoE5aTelemetryDecoder() = default; 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; void set_satellite(const Gnss_Satellite& satellite) override; inline std::string role() override { return role_; } /*! * \brief Returns "Galileo_E5a_Telemetry_Decoder" */ inline std::string implementation() override { return "Galileo_E5A_Telemetry_Decoder"; } inline void set_channel(int channel) override { telemetry_decoder_->set_channel(channel); } inline void reset() override { telemetry_decoder_->reset(); } inline size_t item_size() override { return 0; } private: galileo_telemetry_decoder_gs_sptr telemetry_decoder_; Gnss_Satellite satellite_; std::string dump_filename_; std::string role_; int channel_; unsigned int in_streams_; unsigned int out_streams_; bool dump_; }; #endif // GNSS_SDR_GALILEO_E5A_TELEMETRY_DECODER_H