GNSS-SDR 0.0.21
An Open Source GNSS Software Defined Receiver
Loading...
Searching...
No Matches
galileo_e5a_dll_pll_tracking.h
Go to the documentation of this file.
1/*!
2 * \file galileo_e5a_dll_pll_tracking.h
3 * \brief Adapts a code DLL + carrier PLL
4 * tracking block to a TrackingInterface for Galileo E5a signals
5 * \author Marc Sales, 2014. marcsales92(at)gmail.com
6 * \based on work from:
7 * <ul>
8 * <li> Javier Arribas, 2011. jarribas(at)cttc.es
9 * <li> Luis Esteve, 2012. luis(at)epsilon-formacion.com
10 * </ul>
11 *
12 * -----------------------------------------------------------------------------
13 *
14 * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
15 * This file is part of GNSS-SDR.
16 *
17 * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
18 * SPDX-License-Identifier: GPL-3.0-or-later
19 *
20 * -----------------------------------------------------------------------------
21 */
22
23#ifndef GNSS_SDR_GALILEO_E5A_DLL_PLL_TRACKING_H
24#define GNSS_SDR_GALILEO_E5A_DLL_PLL_TRACKING_H
25
27
28/** \addtogroup Tracking
29 * Classes for GNSS signal tracking.
30 * \{ */
31/** \addtogroup Tracking_adapters tracking_adapters
32 * Wrap GNU Radio blocks for GNSS signal tracking with a TrackingInterface
33 * \{ */
34
36
37/*!
38 * \brief This class Adapts a DLL+PLL VEML (Very Early Minus Late) tracking
39 * loop block to a TrackingInterface for Galileo E5a signals
40 */
42{
43public:
44 //! Constructor
46 const std::string& role,
47 unsigned int in_streams,
48 unsigned int out_streams);
49
50 //! Returns "Galileo_E5a_DLL_PLL_Tracking"
51 inline std::string implementation() override
52 {
53 return "Galileo_E5a_DLL_PLL_Tracking";
54 }
55
56private:
57 void configure_tracking_parameters(const ConfigurationInterface* configuration) override;
58 void create_tracking_block() override;
59};
60
61
62/** \} */
63/** \} */
64#endif // GNSS_SDR_GALILEO_E5A_DLL_PLL_TRACKING_H
Base class providing shared logic for DLL+PLL VEML tracking adapters.
std::string role() override final
Get role from the Tracking block adapter.
BaseDllPllTracking(const ConfigurationInterface *configuration, std::string role, unsigned int in_streams, unsigned int out_streams)
Base constructor of a Tracking block adapter.
This abstract class represents an interface to configuration parameters.
GalileoE5aDllPllTracking(const ConfigurationInterface *configuration, const std::string &role, unsigned int in_streams, unsigned int out_streams)
Constructor.
std::string implementation() override
Returns "Galileo_E5a_DLL_PLL_Tracking".