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.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2019-07-26 10:38:20 +00:00
|
|
|
* Copyright (C) 2010-2019 (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.
|
|
|
|
*
|
2020-02-08 00:20:02 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2017-12-04 16:07:54 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2020-02-08 09:10:46 +00:00
|
|
|
#ifndef GNSS_SDR_GPS_L5_SIGNAL_H
|
|
|
|
#define GNSS_SDR_GPS_L5_SIGNAL_H
|
2017-12-04 16:07:54 +00:00
|
|
|
|
2019-07-29 19:47:46 +00:00
|
|
|
#include <gsl/gsl>
|
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-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
|
|
|
|
|
|
|
|
2020-02-08 09:10:46 +00:00
|
|
|
#endif // GNSS_SDR_GPS_L5_SIGNAL_H
|