2013-09-10 08:44:02 +00:00
|
|
|
/*!
|
|
|
|
* \file galileo_e1_pvt.h
|
|
|
|
* \brief Interface of an adapter of a GALILEO E1 PVT solver block to a
|
2013-11-29 08:38:22 +00:00
|
|
|
* PvtInterface.
|
|
|
|
* \author Javier Arribas, 2013. jarribas(at)cttc.es
|
2013-09-10 08:44:02 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2014-01-12 20:07:38 +00:00
|
|
|
* Copyright (C) 2010-2014 (see AUTHORS file for a list of contributors)
|
2013-09-10 08:44:02 +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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GNSS_SDR_GALILEO_E1_PVT_H_
|
|
|
|
#define GNSS_SDR_GALILEO_E1_PVT_H_
|
|
|
|
|
2014-01-12 20:07:38 +00:00
|
|
|
#include <string>
|
|
|
|
#include <gnuradio/msg_queue.h>
|
2013-09-10 08:44:02 +00:00
|
|
|
#include "pvt_interface.h"
|
|
|
|
#include "galileo_e1_pvt_cc.h"
|
2014-01-12 20:07:38 +00:00
|
|
|
|
2013-09-10 08:44:02 +00:00
|
|
|
|
|
|
|
class ConfigurationInterface;
|
|
|
|
|
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief This class implements a PvtInterface for Galileo E1
|
2013-09-10 08:44:02 +00:00
|
|
|
*/
|
|
|
|
class GalileoE1Pvt : public PvtInterface
|
|
|
|
{
|
|
|
|
public:
|
2013-11-29 08:38:22 +00:00
|
|
|
GalileoE1Pvt(ConfigurationInterface* configuration,
|
2013-09-10 08:44:02 +00:00
|
|
|
std::string role,
|
|
|
|
unsigned int in_streams,
|
|
|
|
unsigned int out_streams,
|
|
|
|
boost::shared_ptr<gr::msg_queue> queue);
|
|
|
|
|
|
|
|
virtual ~GalileoE1Pvt();
|
|
|
|
|
|
|
|
std::string role()
|
|
|
|
{
|
|
|
|
return role_;
|
|
|
|
}
|
|
|
|
|
2013-11-29 08:38:22 +00:00
|
|
|
//! Returns "GALILEO_E1_PVT"
|
2013-09-10 08:44:02 +00:00
|
|
|
std::string implementation()
|
|
|
|
{
|
|
|
|
return "GALILEO_E1_PVT";
|
|
|
|
}
|
|
|
|
|
|
|
|
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. Returns sizeof(gr_complex)
|
|
|
|
size_t item_size()
|
|
|
|
{
|
|
|
|
return sizeof(gr_complex);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
galileo_e1_pvt_cc_sptr pvt_;
|
|
|
|
bool dump_;
|
|
|
|
unsigned int fs_in_;
|
|
|
|
std::string dump_filename_;
|
|
|
|
std::string role_;
|
|
|
|
unsigned int in_streams_;
|
|
|
|
unsigned int out_streams_;
|
|
|
|
boost::shared_ptr<gr::msg_queue> queue_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|