GNSS-SDR 0.0.21
An Open Source GNSS Software Defined Receiver
Loading...
Searching...
No Matches
qzss_signal_replica.h
Go to the documentation of this file.
1/*!
2 * \file qzss_signal_replica.h
3 * \brief This file implements signal generators for QZSS signals
4 * \author Carles Fernández-Prades, 2026. cfernandez (at) cttc.es
5 *
6 * -----------------------------------------------------------------------------
7 *
8 * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
9 * This file is part of GNSS-SDR.
10 *
11 * Copyright (C) 2010-2026 (see AUTHORS file for a list of contributors)
12 * SPDX-License-Identifier: GPL-3.0-or-later
13 *
14 * -----------------------------------------------------------------------------
15 */
16
17#ifndef GNSS_SDR_QZSS_SIGNAL_REPLICA_H
18#define GNSS_SDR_QZSS_SIGNAL_REPLICA_H
19
20#include <complex>
21#include <cstdint>
22#if HAS_STD_SPAN
23#include <span>
24namespace own = std;
25#else
26#include <gsl-lite/gsl-lite.hpp>
27namespace own = gsl_lite;
28#endif
29
30/** \addtogroup Algorithms_Library
31 * \{ */
32/** \addtogroup Algorithm_libs algorithms_libs
33 * \{ */
34
35//! Generates complex QZSS L1 C/A code for the desired SV ID, and sampled to specific sampling frequency
36void qzss_l1_code_gen_complex_sampled(own::span<std::complex<float>> dest, uint32_t prn, int32_t sampling_freq);
37
38//! Generates real QZSS L1 C/A code for the desired SV ID
39void qzss_l1_code_gen_float(own::span<float> dest, uint32_t prn);
40
41//! Generates complex QZSS L5I code for the desired SV ID, and sampled to specific sampling frequency
42void qzss_l5i_code_gen_complex_sampled(own::span<std::complex<float>> dest, uint32_t prn, int32_t sampling_freq);
43
44//! Generates real QZSS L5I code for the desired SV ID
45void qzss_l5i_code_gen_float(own::span<float> dest, uint32_t prn);
46
47//! Generates complex QZSS L5Q code for the desired SV ID, and sampled to specific sampling frequency
48void qzss_l5q_code_gen_complex_sampled(own::span<std::complex<float>> dest, uint32_t prn, int32_t sampling_freq);
49
50//! Generates real QZSS L5I code for the desired SV ID
51void qzss_l5q_code_gen_float(own::span<float> dest, uint32_t prn);
52
53/** \} */
54/** \} */
55#endif // GNSS_SDR_QZSS_SIGNAL_REPLICA_H
void qzss_l5q_code_gen_complex_sampled(own::span< std::complex< float > > dest, uint32_t prn, int32_t sampling_freq)
Generates complex QZSS L5Q code for the desired SV ID, and sampled to specific sampling frequency.
void qzss_l5q_code_gen_float(own::span< float > dest, uint32_t prn)
Generates real QZSS L5I code for the desired SV ID.
void qzss_l5i_code_gen_float(own::span< float > dest, uint32_t prn)
Generates real QZSS L5I code for the desired SV ID.
void qzss_l1_code_gen_complex_sampled(own::span< std::complex< float > > dest, uint32_t prn, int32_t sampling_freq)
Generates complex QZSS L1 C/A code for the desired SV ID, and sampled to specific sampling frequency.
void qzss_l1_code_gen_float(own::span< float > dest, uint32_t prn)
Generates real QZSS L1 C/A code for the desired SV ID.
void qzss_l5i_code_gen_complex_sampled(own::span< std::complex< float > > dest, uint32_t prn, int32_t sampling_freq)
Generates complex QZSS L5I code for the desired SV ID, and sampled to specific sampling frequency.
STL namespace.