2014-06-10 16:58:17 +00:00
|
|
|
/*!
|
|
|
|
* \file hybrid_observables.h
|
|
|
|
* \brief Implementation of an adapter of a Galileo E1 observables block
|
|
|
|
* to a ObservablesInterface
|
|
|
|
* \author Mara Branzanti 2013. mara.branzanti(at)gmail.com
|
|
|
|
* \author Javier Arribas 2013. jarribas(at)cttc.es
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2015-01-08 18:49:59 +00:00
|
|
|
* Copyright (C) 2010-2015 (see AUTHORS file for a list of contributors)
|
2014-06-10 16:58:17 +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
|
2015-01-08 18:49:59 +00:00
|
|
|
* (at your option) any later version.
|
2014-06-10 16:58:17 +00:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GNSS_SDR_hybrid_observables_H_
|
|
|
|
#define GNSS_SDR_hybrid_observables_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <gnuradio/msg_queue.h>
|
|
|
|
#include "observables_interface.h"
|
|
|
|
#include "hybrid_observables_cc.h"
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigurationInterface;
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief This class implements an ObservablesInterface for Galileo E1B
|
|
|
|
*/
|
|
|
|
class HybridObservables : public ObservablesInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
HybridObservables(ConfigurationInterface* configuration,
|
|
|
|
std::string role,
|
|
|
|
unsigned int in_streams,
|
|
|
|
unsigned int out_streams,
|
|
|
|
boost::shared_ptr<gr::msg_queue> queue);
|
|
|
|
virtual ~HybridObservables();
|
|
|
|
std::string role()
|
|
|
|
{
|
|
|
|
return role_;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Returns "Hybrid_Observables"
|
|
|
|
std::string implementation()
|
|
|
|
{
|
|
|
|
return "Hybrid_Observables";
|
|
|
|
}
|
|
|
|
void connect(gr::top_block_sptr top_block);
|
|
|
|
void disconnect(gr::top_block_sptr top_block);
|
|
|
|
gr::basic_block_sptr get_left_block();
|
|
|
|
gr::basic_block_sptr get_right_block();
|
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! All blocks must have an item_size() function implementation
|
|
|
|
size_t item_size()
|
|
|
|
{
|
|
|
|
return sizeof(gr_complex);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
hybrid_observables_cc_sptr observables_;
|
|
|
|
bool dump_;
|
|
|
|
std::string dump_filename_;
|
|
|
|
std::string role_;
|
|
|
|
unsigned int in_streams_;
|
|
|
|
unsigned int out_streams_;
|
|
|
|
boost::shared_ptr<gr::msg_queue> queue_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|