/*! * \file glonass_l1_ca_pcps_acquisition.cc * \brief Adapts a PCPS acquisition block to an AcquisitionInterface for * Glonass L1 C/A signals * \author Gabriel Araujo, 2017. gabriel.araujo.5000(at)gmail.com * \author Luis Esteve, 2017. luis(at)epsilon-formacion.com * * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2019 (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 "glonass_l1_ca_pcps_acquisition.h" #include "GLONASS_L1_L2_CA.h" #include "acq_conf.h" #include "configuration_interface.h" #include "glonass_l1_signal_processing.h" #include "gnss_sdr_flags.h" #include #include #include GlonassL1CaPcpsAcquisition::GlonassL1CaPcpsAcquisition( ConfigurationInterface* configuration, const std::string& role, unsigned int in_streams, unsigned int out_streams) : role_(role), in_streams_(in_streams), out_streams_(out_streams) { configuration_ = configuration; acq_parameters_.ms_per_code = 1; acq_parameters_.SetFromConfiguration(configuration_, role, GLONASS_L1_CA_CODE_RATE_CPS, 100e6); DLOG(INFO) << "role " << role; if (FLAGS_doppler_max != 0) { acq_parameters_.doppler_max = FLAGS_doppler_max; } doppler_max_ = acq_parameters_.doppler_max; doppler_step_ = acq_parameters_.doppler_step; item_type_ = acq_parameters_.item_type; fs_in_ = acq_parameters_.fs_in; code_length_ = static_cast(std::floor(static_cast(acq_parameters_.resampled_fs) / (GLONASS_L1_CA_CODE_RATE_CPS / GLONASS_L1_CA_CODE_LENGTH_CHIPS))); vector_length_ = std::floor(acq_parameters_.sampled_ms * acq_parameters_.samples_per_ms) * (acq_parameters_.bit_transition_flag ? 2 : 1); code_ = std::vector>(vector_length_); sampled_ms_ = acq_parameters_.sampled_ms; acquisition_ = pcps_make_acquisition(acq_parameters_); DLOG(INFO) << "acquisition(" << acquisition_->unique_id() << ")"; if (item_type_ == "cbyte") { cbyte_to_float_x2_ = make_complex_byte_to_float_x2(); float_to_complex_ = gr::blocks::float_to_complex::make(); } channel_ = 0; threshold_ = 0.0; doppler_step_ = 0; gnss_synchro_ = nullptr; if (in_streams_ > 1) { LOG(ERROR) << "This implementation only supports one input stream"; } if (out_streams_ > 0) { LOG(ERROR) << "This implementation does not provide an output stream"; } } void GlonassL1CaPcpsAcquisition::stop_acquisition() { } void GlonassL1CaPcpsAcquisition::set_threshold(float threshold) { float pfa = configuration_->property(role_ + ".pfa", 0.0); if (pfa == 0.0) { threshold_ = threshold; } else { threshold_ = calculate_threshold(pfa); } DLOG(INFO) << "Channel " << channel_ << " Threshold = " << threshold_; acquisition_->set_threshold(threshold_); } void GlonassL1CaPcpsAcquisition::set_doppler_max(unsigned int doppler_max) { doppler_max_ = doppler_max; acquisition_->set_doppler_max(doppler_max_); } void GlonassL1CaPcpsAcquisition::set_doppler_step(unsigned int doppler_step) { doppler_step_ = doppler_step; acquisition_->set_doppler_step(doppler_step_); } void GlonassL1CaPcpsAcquisition::set_gnss_synchro(Gnss_Synchro* gnss_synchro) { gnss_synchro_ = gnss_synchro; acquisition_->set_gnss_synchro(gnss_synchro_); } signed int GlonassL1CaPcpsAcquisition::mag() { return acquisition_->mag(); } void GlonassL1CaPcpsAcquisition::init() { acquisition_->init(); set_local_code(); } void GlonassL1CaPcpsAcquisition::set_local_code() { std::vector> code(code_length_); glonass_l1_ca_code_gen_complex_sampled(code, fs_in_, 0); gsl::span code_span(code_.data(), vector_length_); for (unsigned int i = 0; i < sampled_ms_; i++) { std::copy_n(code.data(), code_length_, code_span.subspan(i * code_length_, code_length_).data()); } acquisition_->set_local_code(code_.data()); } void GlonassL1CaPcpsAcquisition::reset() { acquisition_->set_active(true); } void GlonassL1CaPcpsAcquisition::set_state(int state) { acquisition_->set_state(state); } float GlonassL1CaPcpsAcquisition::calculate_threshold(float pfa) { // Calculate the threshold unsigned int frequency_bins = 0; /* for (int doppler = (int)(-doppler_max_); doppler <= (int)doppler_max_; doppler += doppler_step_) { frequency_bins++; } */ frequency_bins = (2 * doppler_max_ + doppler_step_) / doppler_step_; DLOG(INFO) << "Channel " << channel_ << " Pfa = " << pfa; unsigned int ncells = vector_length_ * frequency_bins; double exponent = 1 / static_cast(ncells); double val = pow(1.0 - pfa, exponent); auto lambda = static_cast(vector_length_); boost::math::exponential_distribution mydist(lambda); auto threshold = static_cast(quantile(mydist, val)); return threshold; } void GlonassL1CaPcpsAcquisition::connect(gr::top_block_sptr top_block) { if (item_type_ == "gr_complex") { // nothing to connect } else if (item_type_ == "cshort") { // nothing to connect } else if (item_type_ == "cbyte") { top_block->connect(cbyte_to_float_x2_, 0, float_to_complex_, 0); top_block->connect(cbyte_to_float_x2_, 1, float_to_complex_, 1); top_block->connect(float_to_complex_, 0, acquisition_, 0); } else { LOG(WARNING) << item_type_ << " unknown acquisition item type"; } } void GlonassL1CaPcpsAcquisition::disconnect(gr::top_block_sptr top_block) { if (item_type_ == "gr_complex") { // nothing to disconnect } else if (item_type_ == "cshort") { // nothing to disconnect } else if (item_type_ == "cbyte") { // Since a byte-based acq implementation is not available, // we just convert cshorts to gr_complex top_block->disconnect(cbyte_to_float_x2_, 0, float_to_complex_, 0); top_block->disconnect(cbyte_to_float_x2_, 1, float_to_complex_, 1); top_block->disconnect(float_to_complex_, 0, acquisition_, 0); } else { LOG(WARNING) << item_type_ << " unknown acquisition item type"; } } gr::basic_block_sptr GlonassL1CaPcpsAcquisition::get_left_block() { if (item_type_ == "gr_complex") { return acquisition_; } if (item_type_ == "cshort") { return acquisition_; } if (item_type_ == "cbyte") { return cbyte_to_float_x2_; } LOG(WARNING) << item_type_ << " unknown acquisition item type"; return nullptr; } gr::basic_block_sptr GlonassL1CaPcpsAcquisition::get_right_block() { return acquisition_; }