2017-12-04 16:07:54 +00:00
|
|
|
/*!
|
|
|
|
* \file gps_l5_signal.h
|
2017-12-04 17:39:07 +00:00
|
|
|
* \brief This class implements signal generators for the GPS L5 signals
|
2017-12-04 16:07:54 +00:00
|
|
|
* \author Javier Arribas, 2017. jarribas(at)cttc.es
|
|
|
|
*
|
|
|
|
* Detailed description of the file here if needed.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2018-05-13 20:49:11 +00:00
|
|
|
* Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors)
|
2017-12-04 16:07:54 +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
|
|
|
|
* (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
|
2018-05-13 20:49:11 +00:00
|
|
|
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2017-12-04 16:07:54 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2017-12-04 17:39:07 +00:00
|
|
|
#ifndef GNSS_SDR_GPS_L5_SIGNAL_H_
|
|
|
|
#define GNSS_SDR_GPS_L5_SIGNAL_H_
|
2017-12-04 16:07:54 +00:00
|
|
|
|
|
|
|
#include <complex>
|
2018-08-13 08:18:05 +00:00
|
|
|
#include <cstdint>
|
2017-12-04 16:07:54 +00:00
|
|
|
|
2019-06-28 23:28:30 +00:00
|
|
|
#if HAS_SPAN
|
|
|
|
#include <span>
|
|
|
|
namespace gsl = std;
|
|
|
|
#else
|
|
|
|
#include <gsl/gsl>
|
|
|
|
#endif
|
|
|
|
|
2019-06-05 13:39:20 +00:00
|
|
|
//! Generates complex GPS L5I code for the desired SV ID
|
2019-06-28 23:28:30 +00:00
|
|
|
void gps_l5i_code_gen_complex(gsl::span<std::complex<float>> _dest, uint32_t _prn);
|
2019-06-05 13:39:20 +00:00
|
|
|
|
|
|
|
//! Generates real GPS L5I code for the desired SV ID
|
2019-06-28 23:28:30 +00:00
|
|
|
void gps_l5i_code_gen_float(gsl::span<float> _dest, uint32_t _prn);
|
2017-12-04 16:07:54 +00:00
|
|
|
|
2019-06-05 13:39:20 +00:00
|
|
|
//! Generates complex GPS L5Q code for the desired SV ID
|
2019-06-28 23:28:30 +00:00
|
|
|
void gps_l5q_code_gen_complex(gsl::span<std::complex<float>> _dest, uint32_t _prn);
|
2019-06-05 13:39:20 +00:00
|
|
|
|
|
|
|
//! Generates real GPS L5Q code for the desired SV ID
|
2019-06-28 23:28:30 +00:00
|
|
|
void gps_l5q_code_gen_float(gsl::span<float> _dest, uint32_t _prn);
|
2017-12-04 16:07:54 +00:00
|
|
|
|
2019-06-05 13:39:20 +00:00
|
|
|
//! Generates complex GPS L5I code for the desired SV ID, and sampled to specific sampling frequency
|
2019-06-28 23:28:30 +00:00
|
|
|
void gps_l5i_code_gen_complex_sampled(gsl::span<std::complex<float>> _dest, uint32_t _prn, int32_t _fs);
|
2017-12-04 16:07:54 +00:00
|
|
|
|
2019-06-05 13:39:20 +00:00
|
|
|
//! Generates complex GPS L5Q code for the desired SV ID, and sampled to specific sampling frequency
|
2019-06-28 23:28:30 +00:00
|
|
|
void gps_l5q_code_gen_complex_sampled(gsl::span<std::complex<float>> _dest, uint32_t _prn, int32_t _fs);
|
2017-12-04 16:07:54 +00:00
|
|
|
|
|
|
|
|
2017-12-04 17:39:07 +00:00
|
|
|
#endif /* GNSS_SDR_GPS_L5_SIGNAL_H_ */
|