/*! * \file pcps_assisted_acquisition_cc.h * \brief This class implements a Parallel Code Phase Search Acquisition with assistance and multi-dwells * * Acquisition strategy (Kay Borre book + CFAR threshold). *
    *
  1. Compute the input signal power estimation *
  2. Doppler serial search loop *
  3. Perform the FFT-based circular convolution (parallel time search) *
  4. Record the maximum peak and the associated synchronization parameters *
  5. Compute the test statistics and compare to the threshold *
  6. Declare positive or negative acquisition using a message queue *
* * Kay Borre book: 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. pp 81-84 * * \authors * * ----------------------------------------------------------------------------- * * Copyright (C) 2010-2020 (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_PCPS_ASSISTED_ACQUISITION_CC_H #define GNSS_SDR_PCPS_ASSISTED_ACQUISITION_CC_H #include "channel_fsm.h" #include "gnss_synchro.h" #include #include #include #include #include #include #include #include #if GNURADIO_USES_STD_POINTERS #else #include #endif /** \addtogroup Acquisition * \{ */ /** \addtogroup Acq_gnuradio_blocks * \{ */ class pcps_assisted_acquisition_cc; #if GNURADIO_USES_STD_POINTERS using pcps_assisted_acquisition_cc_sptr = std::shared_ptr; #else using pcps_assisted_acquisition_cc_sptr = boost::shared_ptr; #endif pcps_assisted_acquisition_cc_sptr pcps_make_assisted_acquisition_cc( int32_t max_dwells, uint32_t sampled_ms, int32_t doppler_max, int32_t doppler_min, int64_t fs_in, int32_t samples_per_ms, bool dump, const std::string& dump_filename, bool enable_monitor_output); /*! * \brief This class implements a Parallel Code Phase Search Acquisition. * * Check \ref Navitec2012 "An Open Source Galileo E1 Software Receiver", * Algorithm 1, for a pseudocode description of this implementation. */ class pcps_assisted_acquisition_cc : public gr::block { public: /*! * \brief Default destructor. */ ~pcps_assisted_acquisition_cc(); /*! * \brief Set acquisition/tracking common Gnss_Synchro object pointer * to exchange synchronization data between acquisition and tracking blocks. * \param p_gnss_synchro Satellite information shared by the processing blocks. */ inline void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) { d_gnss_synchro = p_gnss_synchro; } /*! * \brief Returns the maximum peak of grid search. */ inline uint32_t mag() const { return d_test_statistics; } /*! * \brief Initializes acquisition algorithm. */ void init(); /*! * \brief Sets local code for PCPS acquisition algorithm. * \param code - Pointer to the PRN code. */ void set_local_code(std::complex* code); /*! * \brief Starts acquisition algorithm, turning from standby mode to * active mode * \param active - bool that activates/deactivates the block. */ inline void set_active(bool active) { d_active = active; } /*! * \brief Set acquisition channel unique ID * \param channel - receiver channel. */ inline void set_channel(uint32_t channel) { d_channel = channel; } /*! * \brief Set channel fsm associated to this acquisition instance */ inline void set_channel_fsm(std::weak_ptr channel_fsm) { d_channel_fsm = std::move(channel_fsm); } /*! * \brief Set statistics threshold of PCPS algorithm. * \param threshold - Threshold for signal detection (check \ref Navitec2012, * Algorithm 1, for a definition of this threshold). */ inline void set_threshold(float threshold) { d_threshold = threshold; } inline void set_state(int32_t state) { d_state = state; } /*! * \brief Set maximum Doppler grid search * \param doppler_max - Maximum Doppler shift considered in the grid search [Hz]. */ inline void set_doppler_max(uint32_t doppler_max) { d_doppler_max = doppler_max; } /*! * \brief Set Doppler steps for the grid search * \param doppler_step - Frequency bin of the search grid [Hz]. */ void set_doppler_step(uint32_t doppler_step); /*! * \brief Parallel Code Phase Search Acquisition signal processing. */ int general_work(int noutput_items, gr_vector_int& ninput_items, gr_vector_const_void_star& input_items, gr_vector_void_star& output_items); void forecast(int noutput_items, gr_vector_int& ninput_items_required); private: friend pcps_assisted_acquisition_cc_sptr pcps_make_assisted_acquisition_cc(int32_t max_dwells, uint32_t sampled_ms, int32_t doppler_max, int32_t doppler_min, int64_t fs_in, int32_t samples_per_ms, bool dump, const std::string& dump_filename, bool enable_monitor_output); pcps_assisted_acquisition_cc(int32_t max_dwells, uint32_t sampled_ms, int32_t doppler_max, int32_t doppler_min, int64_t fs_in, int32_t samples_per_ms, bool dump, const std::string& dump_filename, bool enable_monitor_output); void calculate_magnitudes(gr_complex* fft_begin, int32_t doppler_shift, int32_t doppler_offset); int32_t compute_and_accumulate_grid(gr_vector_const_void_star& input_items); float estimate_input_power(gr_vector_const_void_star& input_items); float search_maximum(); void get_assistance(); void reset_grid(); void redefine_grid(); std::weak_ptr d_channel_fsm; std::unique_ptr d_fft_if; std::unique_ptr d_ifft; std::vector>> d_grid_doppler_wipeoffs; std::vector> d_grid_data; std::vector d_fft_codes; std::string d_satellite_str; std::string d_dump_filename; std::ofstream d_dump_file; Gnss_Synchro* d_gnss_synchro; int64_t d_fs_in; uint64_t d_sample_counter; float d_threshold; float d_doppler_freq; float d_input_power; float d_test_statistics; int32_t d_samples_per_ms; int32_t d_max_dwells; int32_t d_gnuradio_forecast_samples; int32_t d_doppler_max; int32_t d_doppler_min; int32_t d_config_doppler_max; int32_t d_config_doppler_min; int32_t d_num_doppler_points; int32_t d_doppler_step; int32_t d_state; int32_t d_well_count; uint32_t d_doppler_resolution; uint32_t d_channel; uint32_t d_sampled_ms; uint32_t d_fft_size; uint32_t d_code_phase; bool d_active; bool d_disable_assist; bool d_dump; bool d_enable_monitor_output; }; /** \} */ /** \} */ #endif // GNSS_SDR_PCPS_ASSISTED_ACQUISITION_CC_H