diff --git a/src/algorithms/tracking/adapters/CMakeLists.txt b/src/algorithms/tracking/adapters/CMakeLists.txt
index f58e1c802..1435379f5 100644
--- a/src/algorithms/tracking/adapters/CMakeLists.txt
+++ b/src/algorithms/tracking/adapters/CMakeLists.txt
@@ -49,6 +49,7 @@ endif()
set(TRACKING_ADAPTER_SOURCES
galileo_e1_dll_pll_veml_tracking.cc
+ galileo_e1_mixed_veml_tracking.cc
galileo_e1_tcp_connector_tracking.cc
gps_l1_ca_dll_pll_tracking.cc
gps_l1_ca_tcp_connector_tracking.cc
@@ -67,6 +68,7 @@ set(TRACKING_ADAPTER_SOURCES
set(TRACKING_ADAPTER_HEADERS
galileo_e1_dll_pll_veml_tracking.h
+ galileo_e1_mixed_veml_tracking.h
galileo_e1_tcp_connector_tracking.h
gps_l1_ca_dll_pll_tracking.h
gps_l1_ca_tcp_connector_tracking.h
diff --git a/src/algorithms/tracking/adapters/galileo_e1_mixed_veml_tracking.cc b/src/algorithms/tracking/adapters/galileo_e1_mixed_veml_tracking.cc
new file mode 100644
index 000000000..90858ae02
--- /dev/null
+++ b/src/algorithms/tracking/adapters/galileo_e1_mixed_veml_tracking.cc
@@ -0,0 +1,252 @@
+/*!
+ * \file galileo_e1_mixed_veml_tracking.cc
+ * \brief Adapts a DLL+PLL VEML (Very Early Minus Late) tracking loop block
+ * to a TrackingInterface for Galileo E1 signals
+ * \author Luis Esteve, 2012. luis(at)epsilon-formacion.com
+ *
+ * Code DLL + carrier PLL according to the algorithms described in:
+ * K.Borre, D.M.Akos, N.Bertelsen, P.Rinder, and S.H.Jensen,
+ * A Software-Defined GPS and Galileo Receiver. A Single-Frequency
+ * Approach, Birkhauser, 2007
+ *
+ * -------------------------------------------------------------------------
+ *
+ * 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 .
+ *
+ * -------------------------------------------------------------------------
+ */
+
+#include "galileo_e1_mixed_veml_tracking.h"
+#include "Galileo_E1.h"
+#include "configuration_interface.h"
+#include "display.h"
+#include "dll_pll_conf.h"
+#include "gnss_sdr_flags.h"
+#include
+
+
+GalileoE1MixedVemlTracking::GalileoE1MixedVemlTracking(
+ ConfigurationInterface* configuration, const std::string& role,
+ unsigned int in_streams, unsigned int out_streams) : role_(role), in_streams_(in_streams), out_streams_(out_streams)
+{
+ Dll_Pll_Conf trk_param = Dll_Pll_Conf();
+ DLOG(INFO) << "role " << role;
+ //################# CONFIGURATION PARAMETERS ########################
+ std::string default_item_type = "gr_complex";
+ std::string item_type = configuration->property(role + ".item_type", default_item_type);
+ int fs_in_deprecated = configuration->property("GNSS-SDR.internal_fs_hz", 2048000);
+ int fs_in = configuration->property("GNSS-SDR.internal_fs_sps", fs_in_deprecated);
+ trk_param.fs_in = fs_in;
+ bool dump = configuration->property(role + ".dump", false);
+ trk_param.dump = dump;
+ std::string default_dump_filename = "./track_ch";
+ std::string dump_filename = configuration->property(role + ".dump_filename", default_dump_filename);
+ trk_param.dump_filename = dump_filename;
+ bool dump_mat = configuration->property(role + ".dump_mat", true);
+ trk_param.dump_mat = dump_mat;
+ trk_param.high_dyn = configuration->property(role + ".high_dyn", false);
+ if (configuration->property(role + ".smoother_length", 10) < 1)
+ {
+ trk_param.smoother_length = 1;
+ std::cout << TEXT_RED << "WARNING: Gal. E1. smoother_length must be bigger than 0. It has been set to 1" << TEXT_RESET << std::endl;
+ }
+ else
+ {
+ trk_param.smoother_length = configuration->property(role + ".smoother_length", 10);
+ }
+ float pll_bw_hz = configuration->property(role + ".pll_bw_hz", 5.0);
+ if (FLAGS_pll_bw_hz != 0.0)
+ {
+ pll_bw_hz = static_cast(FLAGS_pll_bw_hz);
+ }
+ trk_param.pll_bw_hz = pll_bw_hz;
+ float dll_bw_hz = configuration->property(role + ".dll_bw_hz", 0.5);
+ if (FLAGS_dll_bw_hz != 0.0)
+ {
+ dll_bw_hz = static_cast(FLAGS_dll_bw_hz);
+ }
+ trk_param.dll_bw_hz = dll_bw_hz;
+ float pll_bw_narrow_hz = configuration->property(role + ".pll_bw_narrow_hz", 2.0);
+ trk_param.pll_bw_narrow_hz = pll_bw_narrow_hz;
+ float dll_bw_narrow_hz = configuration->property(role + ".dll_bw_narrow_hz", 0.25);
+ trk_param.dll_bw_narrow_hz = dll_bw_narrow_hz;
+
+ int dll_filter_order = configuration->property(role + ".dll_filter_order", 2);
+ if (dll_filter_order < 1)
+ {
+ LOG(WARNING) << "dll_filter_order parameter must be 1, 2 or 3. Set to 1.";
+ dll_filter_order = 1;
+ }
+ if (dll_filter_order > 3)
+ {
+ LOG(WARNING) << "dll_filter_order parameter must be 1, 2 or 3. Set to 3.";
+ dll_filter_order = 3;
+ }
+ trk_param.dll_filter_order = dll_filter_order;
+
+ int pll_filter_order = configuration->property(role + ".pll_filter_order", 3);
+ if (pll_filter_order < 2)
+ {
+ LOG(WARNING) << "pll_filter_order parameter must be 2 or 3. Set to 2.";
+ pll_filter_order = 2;
+ }
+ if (pll_filter_order > 3)
+ {
+ LOG(WARNING) << "pll_filter_order parameter must be 2 or 3. Set to 3.";
+ pll_filter_order = 3;
+ }
+ trk_param.pll_filter_order = pll_filter_order;
+
+ if (pll_filter_order == 2)
+ {
+ trk_param.fll_filter_order = 1;
+ }
+ if (pll_filter_order == 3)
+ {
+ trk_param.fll_filter_order = 2;
+ }
+
+ bool enable_fll_pull_in = configuration->property(role + ".enable_fll_pull_in", false);
+ trk_param.enable_fll_pull_in = enable_fll_pull_in;
+ float fll_bw_hz = configuration->property(role + ".fll_bw_hz", 35.0);
+ trk_param.fll_bw_hz = fll_bw_hz;
+ trk_param.pull_in_time_s = configuration->property(role + ".pull_in_time_s", trk_param.pull_in_time_s);
+
+ int extend_correlation_symbols = configuration->property(role + ".extend_correlation_symbols", 1);
+ float early_late_space_chips = configuration->property(role + ".early_late_space_chips", 0.15);
+ trk_param.early_late_space_chips = early_late_space_chips;
+ float very_early_late_space_chips = configuration->property(role + ".very_early_late_space_chips", 0.5);
+ trk_param.very_early_late_space_chips = very_early_late_space_chips;
+ float early_late_space_narrow_chips = configuration->property(role + ".early_late_space_narrow_chips", 0.15);
+ trk_param.early_late_space_narrow_chips = early_late_space_narrow_chips;
+ float very_early_late_space_narrow_chips = configuration->property(role + ".very_early_late_space_narrow_chips", 0.5);
+ trk_param.very_early_late_space_narrow_chips = very_early_late_space_narrow_chips;
+ bool track_pilot = configuration->property(role + ".track_pilot", false);
+ if (extend_correlation_symbols < 1)
+ {
+ extend_correlation_symbols = 1;
+ std::cout << TEXT_RED << "WARNING: Galileo E1. extend_correlation_symbols must be bigger than 0. Coherent integration has been set to 1 symbol (4 ms)" << TEXT_RESET << std::endl;
+ }
+ else if (!track_pilot and extend_correlation_symbols > 1)
+ {
+ extend_correlation_symbols = 1;
+ std::cout << TEXT_RED << "WARNING: Galileo E1. Extended coherent integration is not allowed when tracking the data component. Coherent integration has been set to 4 ms (1 symbol)" << TEXT_RESET << std::endl;
+ }
+ if ((extend_correlation_symbols > 1) and (pll_bw_narrow_hz > pll_bw_hz or dll_bw_narrow_hz > dll_bw_hz))
+ {
+ std::cout << TEXT_RED << "WARNING: Galileo E1. PLL or DLL narrow tracking bandwidth is higher than wide tracking one" << TEXT_RESET << std::endl;
+ }
+ trk_param.track_pilot = track_pilot;
+ trk_param.extend_correlation_symbols = extend_correlation_symbols;
+ int vector_length = std::round(fs_in / (GALILEO_E1_CODE_CHIP_RATE_HZ / GALILEO_E1_B_CODE_LENGTH_CHIPS));
+ trk_param.vector_length = vector_length;
+ trk_param.system = 'E';
+ char sig_[3] = "1B";
+ std::memcpy(trk_param.signal, sig_, 3);
+ trk_param.cn0_samples = configuration->property(role + ".cn0_samples", trk_param.cn0_samples);
+ trk_param.cn0_min = configuration->property(role + ".cn0_min", trk_param.cn0_min);
+ trk_param.max_code_lock_fail = configuration->property(role + ".max_lock_fail", trk_param.max_code_lock_fail);
+ trk_param.max_carrier_lock_fail = configuration->property(role + ".max_carrier_lock_fail", trk_param.max_carrier_lock_fail);
+ trk_param.carrier_lock_th = configuration->property(role + ".carrier_lock_th", trk_param.carrier_lock_th);
+
+ //################# MAKE TRACKING GNURadio object ###################
+ if (item_type == "gr_complex")
+ {
+ item_size_ = sizeof(gr_complex);
+ tracking_ = mixed_veml_make_tracking(trk_param);
+ }
+ else
+ {
+ item_size_ = sizeof(gr_complex);
+ LOG(WARNING) << item_type << " unknown tracking item type.";
+ }
+
+ channel_ = 0;
+ DLOG(INFO) << "tracking(" << tracking_->unique_id() << ")";
+ if (in_streams_ > 1)
+ {
+ LOG(ERROR) << "This implementation only supports one input stream";
+ }
+ if (out_streams_ > 1)
+ {
+ LOG(ERROR) << "This implementation only supports one output stream";
+ }
+}
+
+
+GalileoE1MixedVemlTracking::~GalileoE1MixedVemlTracking() = default;
+
+
+void GalileoE1MixedVemlTracking::stop_tracking()
+{
+}
+
+
+void GalileoE1MixedVemlTracking::start_tracking()
+{
+ tracking_->start_tracking();
+}
+
+
+/*
+ * Set tracking channel unique ID
+ */
+void GalileoE1MixedVemlTracking::set_channel(unsigned int channel)
+{
+ channel_ = channel;
+ tracking_->set_channel(channel);
+}
+
+
+void GalileoE1MixedVemlTracking::set_gnss_synchro(Gnss_Synchro* p_gnss_synchro)
+{
+ tracking_->set_gnss_synchro(p_gnss_synchro);
+}
+
+
+void GalileoE1MixedVemlTracking::connect(gr::top_block_sptr top_block)
+{
+ if (top_block)
+ { /* top_block is not null */
+ };
+ //nothing to connect, now the tracking uses gr_sync_decimator
+}
+
+
+void GalileoE1MixedVemlTracking::disconnect(gr::top_block_sptr top_block)
+{
+ if (top_block)
+ { /* top_block is not null */
+ };
+ //nothing to disconnect, now the tracking uses gr_sync_decimator
+}
+
+
+gr::basic_block_sptr GalileoE1MixedVemlTracking::get_left_block()
+{
+ return tracking_;
+}
+
+
+gr::basic_block_sptr GalileoE1MixedVemlTracking::get_right_block()
+{
+ return tracking_;
+}
diff --git a/src/algorithms/tracking/adapters/galileo_e1_mixed_veml_tracking.h b/src/algorithms/tracking/adapters/galileo_e1_mixed_veml_tracking.h
new file mode 100644
index 000000000..2b50d3ae0
--- /dev/null
+++ b/src/algorithms/tracking/adapters/galileo_e1_mixed_veml_tracking.h
@@ -0,0 +1,109 @@
+/*!
+ * \file galileo_e1_mixed_veml_tracking.h
+ * \brief Adapts a DLL+PLL VEML (Very Early Minus Late) tracking loop block
+ * to a TrackingInterface for Galileo E1 signals
+ * \author Luis Esteve, 2012. luis(at)epsilon-formacion.com
+ *
+ * Code DLL + carrier PLL according to the algorithms described in:
+ * K.Borre, D.M.Akos, N.Bertelsen, P.Rinder, and S.H.Jensen,
+ * A Software-Defined GPS and Galileo Receiver. A Single-Frequency
+ * Approach, Birkhauser, 2007
+ *
+ * -------------------------------------------------------------------------
+ *
+ * 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_GALILEO_E1_MIXED_VEML_TRACKING_H_
+#define GNSS_SDR_GALILEO_E1_MIXED_VEML_TRACKING_H_
+
+#include "mixed_veml_tracking.h"
+#include "tracking_interface.h"
+#include
+
+
+class ConfigurationInterface;
+
+/*!
+ * \brief This class Adapts a DLL+PLL VEML (Very Early Minus Late) tracking
+ * loop block to a TrackingInterface for Galileo E1 signals
+ */
+class GalileoE1MixedVemlTracking : public TrackingInterface
+{
+public:
+ GalileoE1MixedVemlTracking(ConfigurationInterface* configuration,
+ const std::string& role,
+ unsigned int in_streams,
+ unsigned int out_streams);
+
+ virtual ~GalileoE1MixedVemlTracking();
+
+ inline std::string role() override
+ {
+ return role_;
+ }
+
+ //! Returns "Galileo_E1_MIXED_VEML_Tracking"
+ inline std::string implementation() override
+ {
+ return "Galileo_E1_Mixed_VEML_Tracking";
+ }
+
+ inline size_t item_size() override
+ {
+ return item_size_;
+ }
+
+ 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;
+
+ /*!
+ * \brief Set tracking channel unique ID
+ */
+ void set_channel(unsigned int channel) override;
+
+ /*!
+ * \brief Set acquisition/tracking common Gnss_Synchro object pointer
+ * to efficiently exchange synchronization data between acquisition and
+ * tracking blocks
+ */
+ void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) override;
+
+ void start_tracking() override;
+ /*!
+ * \brief Stop running tracking
+ */
+ void stop_tracking() override;
+
+private:
+ mixed_veml_tracking_sptr tracking_;
+ size_t item_size_;
+ unsigned int channel_;
+ std::string role_;
+ unsigned int in_streams_;
+ unsigned int out_streams_;
+};
+
+#endif // GNSS_SDR_GALILEO_E1_MIXED_VEML_TRACKING_H_
diff --git a/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt b/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt
index 77c9a01f5..9ac5537e1 100644
--- a/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt
+++ b/src/algorithms/tracking/gnuradio_blocks/CMakeLists.txt
@@ -49,6 +49,7 @@ set(TRACKING_GR_BLOCKS_SOURCES
glonass_l2_ca_dll_pll_c_aid_tracking_cc.cc
glonass_l2_ca_dll_pll_c_aid_tracking_sc.cc
dll_pll_veml_tracking.cc
+ mixed_veml_tracking.cc
${OPT_TRACKING_BLOCKS_SOURCES}
)
@@ -62,6 +63,7 @@ set(TRACKING_GR_BLOCKS_HEADERS
glonass_l2_ca_dll_pll_tracking_cc.h
glonass_l2_ca_dll_pll_c_aid_tracking_cc.h
glonass_l2_ca_dll_pll_c_aid_tracking_sc.h
+ mixed_veml_tracking.h
dll_pll_veml_tracking.h
${OPT_TRACKING_BLOCKS_HEADERS}
)
diff --git a/src/algorithms/tracking/gnuradio_blocks/mixed_veml_tracking.cc b/src/algorithms/tracking/gnuradio_blocks/mixed_veml_tracking.cc
new file mode 100644
index 000000000..63a562e2b
--- /dev/null
+++ b/src/algorithms/tracking/gnuradio_blocks/mixed_veml_tracking.cc
@@ -0,0 +1,1881 @@
+/*!
+ * \file mixed_veml_tracking.cc
+ * \brief Implementation of a code DLL + carrier PLL tracking block.
+ * \author Javier Arribas, 2018. jarribas(at)cttc.es
+ * \author Antonio Ramos, 2018 antonio.ramosdet(at)gmail.com
+ *
+ * Code DLL + carrier PLL according to the algorithms described in:
+ * [1] K.Borre, D.M.Akos, N.Bertelsen, P.Rinder, and S.H.Jensen,
+ * A Software-Defined GPS and Galileo Receiver. A Single-Frequency
+ * Approach, Birkhauser, 2007
+ *
+ * -------------------------------------------------------------------------
+ *
+ * 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 .
+ *
+ * -------------------------------------------------------------------------
+ */
+
+#include "mixed_veml_tracking.h"
+#include "Beidou_B1I.h"
+#include "Beidou_B3I.h"
+#include "GPS_L1_CA.h"
+#include "GPS_L2C.h"
+#include "GPS_L5.h"
+#include "Galileo_E1.h"
+#include "Galileo_E5a.h"
+#include "MATH_CONSTANTS.h"
+#include "beidou_b1i_signal_processing.h"
+#include "beidou_b3i_signal_processing.h"
+#include "galileo_e1_signal_processing.h"
+#include "galileo_e5_signal_processing.h"
+#include "gnss_sdr_create_directory.h"
+#include "gnss_synchro.h"
+#include "gps_l2c_signal.h"
+#include "gps_l5_signal.h"
+#include "gps_sdr_signal_processing.h"
+#include "lock_detectors.h"
+#include "tracking_discriminators.h"
+#include
+#include // for io_signature
+#include // for scoped_lock
+#include // for Mat_VarCreate
+#include // for mp
+#include
+#include // for fill_n
+#include // for fmod, round, floor
+#include // for exception
+#include
+#include // for cout, cerr
+#include