/*! * \file pcps_acquisition_cc.h * \brief This class implements a Parallel Code Phase Search Acquisition * * 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", Birkha user, 2007. pp 81-84 * * \authors * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2012 (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 PCPS_ACQUISITION_CC_H_ #define PCPS_ACQUISITION_CC_H_ #include #include #include #include #include #include #include #include #include "concurrent_queue.h" #include "gnss_synchro.h" class pcps_acquisition_cc; typedef boost::shared_ptr pcps_acquisition_cc_sptr; pcps_acquisition_cc_sptr pcps_make_acquisition_cc(unsigned int sampled_ms, unsigned int doppler_max, long freq, long fs_in, int samples_per_ms, gr_msg_queue_sptr queue, bool dump, std::string dump_filename); /*! * \brief This class implements a Parallel Code Phase Search Acquisition */ class pcps_acquisition_cc: public gr_block { private: friend pcps_acquisition_cc_sptr pcps_make_acquisition_cc(unsigned int sampled_ms, unsigned int doppler_max, long freq, long fs_in, int samples_per_ms, gr_msg_queue_sptr queue, bool dump, std::string dump_filename); pcps_acquisition_cc(unsigned int sampled_ms, unsigned int doppler_max, long freq, long fs_in, int samples_per_ms, gr_msg_queue_sptr queue, bool dump, std::string dump_filename); void calculate_magnitudes(gr_complex* fft_begin, int doppler_shift, int doppler_offset); long d_fs_in; long d_freq; int d_samples_per_ms; unsigned int d_doppler_resolution; float d_threshold; std::string d_satellite_str; unsigned int d_doppler_max; unsigned int d_doppler_step; unsigned int d_sampled_ms; unsigned int d_fft_size; unsigned long int d_sample_counter; gr_complex* d_sine_if; gr_complex* d_fft_codes; gri_fft_complex* d_fft_if; gri_fft_complex* d_ifft; Gnss_Synchro *d_gnss_synchro; unsigned int d_code_phase; float d_doppler_freq; float d_mag; float d_input_power; float d_test_statistics; gr_msg_queue_sptr d_queue; concurrent_queue *d_channel_internal_queue; std::ofstream d_dump_file; bool d_active; bool d_dump; unsigned int d_channel; std::string d_dump_filename; public: ~pcps_acquisition_cc(); /*! * \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) { d_gnss_synchro = p_gnss_synchro; } /*! * \brief Returns the maximum peak of grid search */ unsigned int mag() { return d_mag; } /*! * \brief Initializes acquisition algorithm. */ void init(); /*! * \brief Sets local code for PCPS acquisition algorithm. */ void set_local_code(std::complex * code); /*! * \brief Starts acquisition algorithm, turning from standby mode to * active mode */ void set_active(bool active) { d_active = active; } /*! * \brief Set acquisition channel unique ID */ void set_channel(unsigned int channel) { d_channel = channel; } /*! * \brief Set statistics threshold of PCPS algorithm */ void set_threshold(float threshold) { d_threshold = threshold; } /*! * \brief Set maximum Doppler off grid search */ void set_doppler_max(unsigned int doppler_max) { d_doppler_max = doppler_max; } /*! * \brief Set Doppler steps for the grid search */ void set_doppler_step(unsigned int doppler_step) { d_doppler_step = doppler_step; } /*! * \brief Set tracking channel internal queue */ void set_channel_queue(concurrent_queue *channel_internal_queue) { d_channel_internal_queue = channel_internal_queue; } int general_work(int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); }; #endif /* PCPS_ACQUISITION_CC_H_*/