/*! * \file gps_l1_ca_dll_pll_tracking_cc.h * \brief code DLL + carrier PLL * \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com * Javier Arribas, 2011. jarribas(at)cttc.es * * Code DLL + carrier PLL according to the algorithms described in [1] * [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, Birkha user, 2007 * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2011 (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 GPS_L1_CA_DLL_PLL_TRACKING_CC_H #define GPS_L1_CA_DLL_PLL_TRACKING_CC_H #include #include #include //#include #include "gps_sdr_signal_processing.h" #include "tracking_2rd_DLL_filter.h" #include "tracking_2rd_PLL_filter.h" #include #include #include #include "concurrent_queue.h" class gps_l1_ca_dll_pll_tracking_cc; typedef boost::shared_ptr gps_l1_ca_dll_pll_tracking_cc_sptr; gps_l1_ca_dll_pll_tracking_cc_sptr gps_l1_ca_dll_pll_make_tracking_cc(unsigned int satellite, long if_freq, long fs_in, unsigned int vector_length, gr_msg_queue_sptr queue, bool dump, float pll_bw_hz, float dll_bw_hz, float early_late_space_chips); //class gps_l1_ca_dll_pll_tracking_cc: public gr_sync_decimator class gps_l1_ca_dll_pll_tracking_cc: public gr_block { private: friend gps_l1_ca_dll_pll_tracking_cc_sptr gps_l1_ca_dll_pll_make_tracking_cc(unsigned int satellite, long if_freq, long fs_in, unsigned int vector_length, gr_msg_queue_sptr queue, bool dump, float pll_bw_hz, float dll_bw_hz, float early_late_space_chips); gps_l1_ca_dll_pll_tracking_cc(unsigned int satellite, long if_freq, long fs_in, unsigned int vector_length, gr_msg_queue_sptr queue, bool dump, float pll_bw_hz, float dll_bw_hz, float early_late_space_chips); void update_local_code(); void update_local_carrier(); // tracking configuration vars gr_msg_queue_sptr d_queue; concurrent_queue *d_channel_internal_queue; unsigned int d_vector_length; bool d_dump; unsigned int d_satellite; unsigned int d_channel; int d_last_seg; long d_if_freq; long d_fs_in; float d_early_late_spc_chips; float d_code_phase_step_chips; gr_complex* d_ca_code; gr_complex* d_early_code; gr_complex* d_late_code; gr_complex* d_prompt_code; gr_complex* d_carr_sign; gr_complex d_Early; gr_complex d_Prompt; gr_complex d_Late; // remaining code phase and carrier phase between tracking loops float d_rem_code_phase_samples; float d_next_rem_code_phase_samples; float d_rem_carr_phase_rad; // PLL and DLL filter library tracking_2rd_DLL_filter d_code_loop_filter; tracking_2rd_PLL_filter d_carrier_loop_filter; // acquisition float d_acq_code_phase_samples; float d_acq_carrier_doppler_hz; // tracking vars float d_code_freq_hz; float d_carrier_doppler_hz; float d_acc_carrier_phase_rad; //PRN period in samples int d_current_prn_length_samples; int d_next_prn_length_samples; //processing samples counters unsigned long int d_sample_counter; unsigned long int d_acq_sample_stamp; // CN0 estimation and lock detector int d_cn0_estimation_counter; gr_complex* d_Prompt_buffer; float d_carrier_lock_test; float d_CN0_SNV_dB_Hz; float d_carrier_lock_threshold; int d_carrier_lock_fail_counter; // control vars bool d_enable_tracking; bool d_pull_in; // file dump std::string d_dump_filename; std::ofstream d_dump_file; public: ~gps_l1_ca_dll_pll_tracking_cc(); void set_satellite(unsigned int satellite); void set_channel(unsigned int channel); void set_acq_code_phase(float code_phase); void set_acq_doppler(float doppler); void start_tracking(); void set_acq_sample_stamp(unsigned long int sample_stamp); void set_channel_queue(concurrent_queue *channel_internal_queue); /*! * \brief just like gr_block::general_work, only this arranges to call consume_each for you * * The user must override work to define the signal processing code */ //virtual int work (int noutput_items, // gr_vector_const_void_star &input_items, // gr_vector_void_star &output_items) = 0; //int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); 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); }; #endif //GPS_L1_CA_DLL_PLL_TRACKING_CC_H