2012-07-12 21:17:37 +00:00
|
|
|
/*!
|
2018-02-07 07:43:44 +00:00
|
|
|
* \file pcps_acquisition.h
|
2012-09-12 15:03:38 +00:00
|
|
|
* \brief This class implements a Parallel Code Phase Search Acquisition
|
2012-07-12 21:17:37 +00:00
|
|
|
*
|
2012-09-12 15:03:38 +00:00
|
|
|
* Acquisition strategy (Kay Borre book + CFAR threshold).
|
|
|
|
* <ol>
|
|
|
|
* <li> Compute the input signal power estimation
|
|
|
|
* <li> Doppler serial search loop
|
|
|
|
* <li> Perform the FFT-based circular convolution (parallel time search)
|
|
|
|
* <li> Record the maximum peak and the associated synchronization parameters
|
|
|
|
* <li> Compute the test statistics and compare to the threshold
|
|
|
|
* <li> Declare positive or negative acquisition using a message queue
|
|
|
|
* </ol>
|
2012-07-12 21:17:37 +00:00
|
|
|
*
|
2012-09-12 15:03:38 +00:00
|
|
|
* 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
|
2017-08-21 09:45:12 +00:00
|
|
|
* Approach", Birkhauser, 2007. pp 81-84
|
2012-09-12 15:03:38 +00:00
|
|
|
*
|
|
|
|
* \authors <ul>
|
|
|
|
* <li> Javier Arribas, 2011. jarribas(at)cttc.es
|
|
|
|
* <li> Luis Esteve, 2012. luis(at)epsilon-formacion.com
|
2013-07-23 18:03:07 +00:00
|
|
|
* <li> Marc Molina, 2013. marc.molina.pena@gmail.com
|
2017-10-03 11:47:55 +00:00
|
|
|
* <li> Cillian O'Driscoll, 2017. cillian(at)ieee.org
|
2018-01-09 15:43:38 +00:00
|
|
|
* <li> Antonio Ramos, 2017. antonio.ramos@cttc.es
|
2012-09-12 15:03:38 +00:00
|
|
|
* </ul>
|
2012-07-12 21:17:37 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2018-05-13 20:49:11 +00:00
|
|
|
* Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors)
|
2012-07-12 21:17:37 +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
|
2015-01-08 18:49:59 +00:00
|
|
|
* (at your option) any later version.
|
2012-07-12 21:17:37 +00:00
|
|
|
*
|
|
|
|
* 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
|
2018-05-13 20:49:11 +00:00
|
|
|
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2012-07-12 21:17:37 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2018-02-07 07:43:44 +00:00
|
|
|
#ifndef GNSS_SDR_PCPS_ACQUISITION_H_
|
|
|
|
#define GNSS_SDR_PCPS_ACQUISITION_H_
|
2012-07-12 21:17:37 +00:00
|
|
|
|
2018-02-26 02:15:53 +00:00
|
|
|
#include "gnss_synchro.h"
|
2018-02-05 06:31:34 +00:00
|
|
|
#include <armadillo>
|
2013-07-04 13:47:40 +00:00
|
|
|
#include <gnuradio/block.h>
|
2012-11-25 11:15:11 +00:00
|
|
|
#include <gnuradio/fft/fft.h>
|
2018-04-29 00:51:50 +00:00
|
|
|
#include <volk/volk.h>
|
2018-02-26 02:15:53 +00:00
|
|
|
#include <string>
|
2018-02-05 06:31:34 +00:00
|
|
|
|
2018-04-04 15:03:49 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* pcps acquisition configuration */
|
|
|
|
unsigned int sampled_ms;
|
|
|
|
unsigned int max_dwells;
|
|
|
|
unsigned int doppler_max;
|
|
|
|
unsigned int num_doppler_bins_step2;
|
|
|
|
float doppler_step2;
|
|
|
|
long freq;
|
|
|
|
long fs_in;
|
|
|
|
int samples_per_ms;
|
|
|
|
int samples_per_code;
|
|
|
|
bool bit_transition_flag;
|
|
|
|
bool use_CFAR_algorithm_flag;
|
|
|
|
bool dump;
|
|
|
|
bool blocking;
|
|
|
|
bool make_2_steps;
|
|
|
|
std::string dump_filename;
|
|
|
|
size_t it_size;
|
|
|
|
} pcpsconf_t;
|
2012-07-12 21:17:37 +00:00
|
|
|
|
2018-02-07 07:43:44 +00:00
|
|
|
class pcps_acquisition;
|
2013-07-04 13:47:40 +00:00
|
|
|
|
2018-02-07 07:43:44 +00:00
|
|
|
typedef boost::shared_ptr<pcps_acquisition> pcps_acquisition_sptr;
|
2013-07-04 13:47:40 +00:00
|
|
|
|
2018-02-07 07:43:44 +00:00
|
|
|
pcps_acquisition_sptr
|
2018-04-04 15:03:49 +00:00
|
|
|
pcps_make_acquisition(pcpsconf_t conf_);
|
2012-07-12 21:17:37 +00:00
|
|
|
|
2012-09-12 15:03:38 +00:00
|
|
|
/*!
|
2013-01-25 19:24:17 +00:00
|
|
|
* \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.
|
2012-09-12 15:03:38 +00:00
|
|
|
*/
|
2018-03-03 01:03:39 +00:00
|
|
|
class pcps_acquisition : public gr::block
|
2012-11-25 11:15:11 +00:00
|
|
|
{
|
2012-07-12 21:17:37 +00:00
|
|
|
private:
|
2018-02-07 07:43:44 +00:00
|
|
|
friend pcps_acquisition_sptr
|
2018-04-04 15:03:49 +00:00
|
|
|
pcps_make_acquisition(pcpsconf_t conf_);
|
|
|
|
|
|
|
|
pcps_acquisition(pcpsconf_t conf_);
|
2013-07-04 13:47:40 +00:00
|
|
|
|
2016-02-25 17:21:30 +00:00
|
|
|
void update_local_carrier(gr_complex* carrier_vector, int correlator_length_samples, float freq);
|
2017-06-05 23:22:46 +00:00
|
|
|
void update_grid_doppler_wipeoffs();
|
2018-04-04 12:59:28 +00:00
|
|
|
void update_grid_doppler_wipeoffs_step2();
|
2017-06-05 23:22:46 +00:00
|
|
|
bool is_fdma();
|
2013-07-04 13:47:40 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
void acquisition_core(unsigned long int samp_count);
|
2017-08-24 11:32:37 +00:00
|
|
|
|
2017-04-12 15:04:51 +00:00
|
|
|
void send_negative_acquisition();
|
2018-01-23 11:28:29 +00:00
|
|
|
|
2017-04-12 15:04:51 +00:00
|
|
|
void send_positive_acquisition();
|
2018-01-23 11:28:29 +00:00
|
|
|
|
2018-04-04 15:03:49 +00:00
|
|
|
pcpsconf_t acq_parameters;
|
2018-01-23 11:28:29 +00:00
|
|
|
bool d_active;
|
|
|
|
bool d_worker_active;
|
2018-02-06 15:55:09 +00:00
|
|
|
bool d_cshort;
|
2018-04-04 12:59:28 +00:00
|
|
|
bool d_step_two;
|
2018-01-23 11:28:29 +00:00
|
|
|
float d_threshold;
|
|
|
|
float d_mag;
|
|
|
|
float d_input_power;
|
|
|
|
float d_test_statistics;
|
|
|
|
float* d_magnitude;
|
2017-07-18 20:57:05 +00:00
|
|
|
long d_old_freq;
|
2018-01-23 11:28:29 +00:00
|
|
|
int d_state;
|
|
|
|
unsigned int d_channel;
|
2013-11-29 08:38:22 +00:00
|
|
|
unsigned int d_doppler_step;
|
2018-04-04 12:59:28 +00:00
|
|
|
float d_doppler_center_step_two;
|
2013-08-28 17:17:57 +00:00
|
|
|
unsigned int d_well_count;
|
2013-11-29 08:38:22 +00:00
|
|
|
unsigned int d_fft_size;
|
2018-01-23 11:28:29 +00:00
|
|
|
unsigned int d_num_doppler_bins;
|
2013-11-29 08:38:22 +00:00
|
|
|
unsigned long int d_sample_counter;
|
2013-07-23 18:03:07 +00:00
|
|
|
gr_complex** d_grid_doppler_wipeoffs;
|
2018-04-04 12:59:28 +00:00
|
|
|
gr_complex** d_grid_doppler_wipeoffs_step_two;
|
2013-11-29 08:38:22 +00:00
|
|
|
gr_complex* d_fft_codes;
|
2018-01-23 11:28:29 +00:00
|
|
|
gr_complex* d_data_buffer;
|
2018-02-06 15:55:09 +00:00
|
|
|
lv_16sc_t* d_data_buffer_sc;
|
2013-11-29 08:38:22 +00:00
|
|
|
gr::fft::fft_complex* d_fft_if;
|
|
|
|
gr::fft::fft_complex* d_ifft;
|
2018-01-23 11:28:29 +00:00
|
|
|
Gnss_Synchro* d_gnss_synchro;
|
|
|
|
arma::fmat grid_;
|
2017-08-24 11:32:37 +00:00
|
|
|
|
2012-07-12 21:17:37 +00:00
|
|
|
public:
|
2018-02-07 07:43:44 +00:00
|
|
|
~pcps_acquisition();
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \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.
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
inline void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro)
|
|
|
|
{
|
2018-03-03 01:03:39 +00:00
|
|
|
gr::thread::scoped_lock lock(d_setlock); // require mutex with work function called by the scheduler
|
2018-01-23 11:28:29 +00:00
|
|
|
d_gnss_synchro = p_gnss_synchro;
|
|
|
|
}
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-01-23 11:28:29 +00:00
|
|
|
/*!
|
|
|
|
* \brief Returns the maximum peak of grid search.
|
|
|
|
*/
|
|
|
|
inline unsigned int mag() const
|
|
|
|
{
|
|
|
|
return d_mag;
|
|
|
|
}
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Initializes acquisition algorithm.
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
void init();
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Sets local code for PCPS acquisition algorithm.
|
|
|
|
* \param code - Pointer to the PRN code.
|
|
|
|
*/
|
2018-03-03 01:03:39 +00:00
|
|
|
void set_local_code(std::complex<float>* code);
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Starts acquisition algorithm, turning from standby mode to
|
|
|
|
* active mode
|
|
|
|
* \param active - bool that activates/deactivates the block.
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
inline void set_active(bool active)
|
|
|
|
{
|
2018-03-03 01:03:39 +00:00
|
|
|
gr::thread::scoped_lock lock(d_setlock); // require mutex with work function called by the scheduler
|
2018-01-23 11:28:29 +00:00
|
|
|
d_active = active;
|
|
|
|
}
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2015-02-10 18:30:15 +00:00
|
|
|
* \brief If set to 1, ensures that acquisition starts at the
|
|
|
|
* first available sample.
|
|
|
|
* \param state - int=1 forces start of acquisition
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
void set_state(int state);
|
2015-02-10 18:30:15 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Set acquisition channel unique ID
|
|
|
|
* \param channel - receiver channel.
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
inline void set_channel(unsigned int channel)
|
|
|
|
{
|
2018-03-03 01:03:39 +00:00
|
|
|
gr::thread::scoped_lock lock(d_setlock); // require mutex with work function called by the scheduler
|
2018-01-23 11:28:29 +00:00
|
|
|
d_channel = channel;
|
|
|
|
}
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Set statistics threshold of PCPS algorithm.
|
|
|
|
* \param threshold - Threshold for signal detection (check \ref Navitec2012,
|
|
|
|
* Algorithm 1, for a definition of this threshold).
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
inline void set_threshold(float threshold)
|
|
|
|
{
|
2018-03-03 01:03:39 +00:00
|
|
|
gr::thread::scoped_lock lock(d_setlock); // require mutex with work function called by the scheduler
|
2018-01-23 11:28:29 +00:00
|
|
|
d_threshold = threshold;
|
|
|
|
}
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Set maximum Doppler grid search
|
|
|
|
* \param doppler_max - Maximum Doppler shift considered in the grid search [Hz].
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
inline void set_doppler_max(unsigned int doppler_max)
|
|
|
|
{
|
2018-03-03 01:03:39 +00:00
|
|
|
gr::thread::scoped_lock lock(d_setlock); // require mutex with work function called by the scheduler
|
2018-04-04 15:03:49 +00:00
|
|
|
acq_parameters.doppler_max = doppler_max;
|
2018-01-23 11:28:29 +00:00
|
|
|
}
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Set Doppler steps for the grid search
|
|
|
|
* \param doppler_step - Frequency bin of the search grid [Hz].
|
|
|
|
*/
|
2018-01-23 11:28:29 +00:00
|
|
|
inline void set_doppler_step(unsigned int doppler_step)
|
|
|
|
{
|
2018-03-03 01:03:39 +00:00
|
|
|
gr::thread::scoped_lock lock(d_setlock); // require mutex with work function called by the scheduler
|
2018-01-23 11:28:29 +00:00
|
|
|
d_doppler_step = doppler_step;
|
|
|
|
}
|
2013-11-29 08:38:22 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
/*!
|
2013-11-29 08:38:22 +00:00
|
|
|
* \brief Parallel Code Phase Search Acquisition signal processing.
|
|
|
|
*/
|
2018-03-03 01:03:39 +00:00
|
|
|
int general_work(int noutput_items, gr_vector_int& ninput_items,
|
|
|
|
gr_vector_const_void_star& input_items,
|
|
|
|
gr_vector_void_star& output_items);
|
2012-07-12 21:17:37 +00:00
|
|
|
};
|
|
|
|
|
2018-02-07 07:43:44 +00:00
|
|
|
#endif /* GNSS_SDR_PCPS_ACQUISITION_H_*/
|