/*! * \file gps_l5_signal_replica.cc * \brief This file implements signal generators for GPS L5 signals * \author Javier Arribas, 2017. jarribas(at)cttc.es * * * ----------------------------------------------------------------------------- * * GNSS-SDR is a Global Navigation Satellite System software-defined receiver. * This file is part of GNSS-SDR. * * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors) * SPDX-License-Identifier: GPL-3.0-or-later * * ----------------------------------------------------------------------------- */ #include "gps_l5_signal_replica.h" #include "GPS_L5.h" #include #include #include std::deque l5i_xa_shift(const std::deque& xa) // GPS-IS-705E Figure 3-4 pp. 15 { if (xa == std::deque{true, true, true, true, true, true, true, true, true, true, true, false, true}) { return std::deque{true, true, true, true, true, true, true, true, true, true, true, true, true}; } std::deque out(xa.cbegin(), xa.cend() - 1); out.push_front(xa[12] xor xa[11] xor xa[9] xor xa[8]); return out; } std::deque l5q_xa_shift(const std::deque& xa) { if (xa == std::deque{true, true, true, true, true, true, true, true, true, true, true, false, true}) { return std::deque{true, true, true, true, true, true, true, true, true, true, true, true, true}; } std::deque out(xa.cbegin(), xa.cend() - 1); out.push_front(xa[12] xor xa[11] xor xa[9] xor xa[8]); return out; } std::deque l5i_xb_shift(const std::deque& xb) // GPS-IS-705E Figure 3-5 pp. 16 { std::deque out(xb.cbegin(), xb.cend() - 1); out.push_front(xb[12] xor xb[11] xor xb[7] xor xb[6] xor xb[5] xor xb[3] xor xb[2] xor xb[0]); return out; } std::deque l5q_xb_shift(const std::deque& xb) { std::deque out(xb.cbegin(), xb.cend() - 1); out.push_front(xb[12] xor xb[11] xor xb[7] xor xb[6] xor xb[5] xor xb[3] xor xb[2] xor xb[0]); return out; } std::deque make_l5i_xa() { std::deque xa = {true, true, true, true, true, true, true, true, true, true, true, true, true}; std::deque y(GPS_L5I_CODE_LENGTH_CHIPS, false); for (int32_t i = 0; i < GPS_L5I_CODE_LENGTH_CHIPS; i++) { y[i] = xa[12]; xa = l5i_xa_shift(xa); } return y; } std::deque make_l5i_xb() { std::deque xb = {true, true, true, true, true, true, true, true, true, true, true, true, true}; std::deque y(GPS_L5I_CODE_LENGTH_CHIPS, false); for (int32_t i = 0; i < GPS_L5I_CODE_LENGTH_CHIPS; i++) { y[i] = xb[12]; xb = l5i_xb_shift(xb); } return y; } std::deque make_l5q_xa() { std::deque xa = {true, true, true, true, true, true, true, true, true, true, true, true, true}; std::deque y(GPS_L5Q_CODE_LENGTH_CHIPS, false); for (int32_t i = 0; i < GPS_L5Q_CODE_LENGTH_CHIPS; i++) { y[i] = xa[12]; xa = l5q_xa_shift(xa); } return y; } std::deque make_l5q_xb() { std::deque xb = {true, true, true, true, true, true, true, true, true, true, true, true, true}; std::deque y(GPS_L5Q_CODE_LENGTH_CHIPS, false); for (int32_t i = 0; i < GPS_L5Q_CODE_LENGTH_CHIPS; i++) { y[i] = xb[12]; xb = l5q_xb_shift(xb); } return y; } void make_l5i(own::span dest, int32_t prn) { const int32_t xb_offset = GPS_L5I_INIT_REG[prn]; const std::deque xb = make_l5i_xb(); const std::deque xa = make_l5i_xa(); std::deque xb_shift(GPS_L5I_CODE_LENGTH_CHIPS, false); for (int32_t n = 0; n < GPS_L5I_CODE_LENGTH_CHIPS; n++) { xb_shift[n] = xb[(xb_offset + n) % GPS_L5I_CODE_LENGTH_CHIPS]; } for (int32_t n = 0; n < GPS_L5I_CODE_LENGTH_CHIPS; n++) { dest[n] = xa[n] xor xb_shift[n]; } } void make_l5q(own::span dest, int32_t prn) { const int32_t xb_offset = GPS_L5Q_INIT_REG[prn]; const std::deque xb = make_l5q_xb(); const std::deque xa = make_l5q_xa(); std::deque xb_shift(GPS_L5Q_CODE_LENGTH_CHIPS, false); for (int32_t n = 0; n < GPS_L5Q_CODE_LENGTH_CHIPS; n++) { xb_shift[n] = xb[(xb_offset + n) % GPS_L5Q_CODE_LENGTH_CHIPS]; } for (int32_t n = 0; n < GPS_L5Q_CODE_LENGTH_CHIPS; n++) { dest[n] = xa[n] xor xb_shift[n]; } } void gps_l5i_code_gen_complex(own::span> dest, uint32_t prn) { std::array code_aux{}; if (prn > 0 and prn < 51) { make_l5i(code_aux, prn - 1); } for (int32_t i = 0; i < GPS_L5I_CODE_LENGTH_CHIPS; i++) { dest[i] = std::complex(1.0F - 2.0F * static_cast(code_aux[i]), 0.0); } } void gps_l5i_code_gen_float(own::span dest, uint32_t prn) { std::array code_aux{}; if (prn > 0 and prn < 51) { make_l5i(code_aux, prn - 1); } for (int32_t i = 0; i < GPS_L5I_CODE_LENGTH_CHIPS; i++) { dest[i] = 1.0F - 2.0F * static_cast(code_aux[i]); } } /* * Generates complex GPS L5i code for the desired SV ID and sampled to specific sampling frequency */ void gps_l5i_code_gen_complex_sampled(own::span> dest, uint32_t prn, int32_t sampling_freq) { constexpr int32_t codeLength = GPS_L5I_CODE_LENGTH_CHIPS; constexpr float tc = 1.0 / static_cast(GPS_L5I_CODE_RATE_CPS); // L5I primary chip period in sec const auto samplesPerCode = static_cast(static_cast(sampling_freq) / (static_cast(GPS_L5I_CODE_RATE_CPS) / static_cast(codeLength))); const float ts = 1.0F / static_cast(sampling_freq); // Sampling period in sec int32_t codeValueIndex; std::array code_aux{}; if (prn > 0 and prn < 51) { make_l5i(code_aux, prn - 1); } for (int32_t i = 0; i < samplesPerCode; i++) { // === Digitizing ================================================== // --- Make index array to read L5 code values --------------------- codeValueIndex = static_cast(std::ceil(ts * static_cast(i + 1.0F) / tc)) - 1; // --- Make the digitized version of the L5I code ------------------ if (i == samplesPerCode - 1) { // --- Correct the last index (due to number rounding issues) ----------- dest[i] = std::complex(1.0F - 2.0F * code_aux[codeLength - 1], 0.0); } else { dest[i] = std::complex(1.0F - 2.0F * code_aux[codeValueIndex], 0.0); // repeat the chip -> upsample } } } void gps_l5q_code_gen_complex(own::span> dest, uint32_t prn) { std::array code_aux{}; if (prn > 0 and prn < 51) { make_l5q(code_aux, prn - 1); } for (int32_t i = 0; i < GPS_L5Q_CODE_LENGTH_CHIPS; i++) { dest[i] = std::complex(0.0, 1.0F - 2.0F * static_cast(code_aux[i])); } } void gps_l5q_code_gen_float(own::span dest, uint32_t prn) { std::array code_aux{}; if (prn > 0 and prn < 51) { make_l5q(code_aux, prn - 1); } for (int32_t i = 0; i < GPS_L5Q_CODE_LENGTH_CHIPS; i++) { dest[i] = 1.0 - 2.0 * static_cast(code_aux[i]); } } /* * Generates complex GPS L5Q code for the desired SV ID and sampled to specific sampling frequency */ void gps_l5q_code_gen_complex_sampled(own::span> dest, uint32_t prn, int32_t sampling_freq) { std::array code_aux{}; if (prn > 0 and prn < 51) { make_l5q(code_aux, prn - 1); } int32_t codeValueIndex; constexpr int32_t codeLength = GPS_L5Q_CODE_LENGTH_CHIPS; // --- Find number of samples per spreading code --------------------------- const auto samplesPerCode = static_cast(static_cast(sampling_freq) / (static_cast(GPS_L5Q_CODE_RATE_CPS) / static_cast(codeLength))); // --- Find time constants ------------------------------------------------- const float ts = 1.0F / static_cast(sampling_freq); // Sampling period in sec constexpr float tc = 1.0F / static_cast(GPS_L5Q_CODE_RATE_CPS); // L5Q chip period in sec for (int32_t i = 0; i < samplesPerCode; i++) { // === Digitizing ================================================== // --- Make index array to read L5 code values --------------------- codeValueIndex = static_cast(std::ceil(ts * static_cast(i + 1.0F) / tc)) - 1; // --- Make the digitized version of the L5Q code ------------------ if (i == samplesPerCode - 1) { // --- Correct the last index (due to number rounding issues) ----------- dest[i] = std::complex(0.0, 1.0F - 2.0F * code_aux[codeLength - 1]); } else { dest[i] = std::complex(0.0, 1.0F - 2.0F * code_aux[codeValueIndex]); // repeat the chip -> upsample } } }