GNSS-SDR 0.0.21
An Open Source GNSS Software Defined Receiver
Loading...
Searching...
No Matches
trackingcmd.h
Go to the documentation of this file.
1/*!
2 * \file trackingcmd.h
3 * \brief Class that stores information to update the GNSS signal tracking estimations
4 * \author Javier Arribas, 2021. jarribas(at)cttc.es
5 *
6 *
7 * -----------------------------------------------------------------------------
8 *
9 * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
10 * This file is part of GNSS-SDR.
11 *
12 * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
13 * SPDX-License-Identifier: GPL-3.0-or-later
14 *
15 * -----------------------------------------------------------------------------
16 */
17
18#ifndef GNSS_SDR_TRACKINGCMD_H_
19#define GNSS_SDR_TRACKINGCMD_H_
20
21#include <cstdint>
22
23/** \addtogroup Algorithms_Library
24 * \{ */
25/** \addtogroup Algorithm_libs algorithms_libs
26 * \{ */
27
28class TrackingCmd
29{
30public:
31 TrackingCmd();
32
33 bool enable_carrier_nco_cmd = false;
34 bool enable_code_nco_cmd = false;
35 double code_freq_chips = 0.0;
36 double carrier_freq_hz = 0.0;
37 double carrier_freq_rate_hz_s = 0.0;
38 uint64_t sample_counter = 0UL;
39};
40
41/** \} */
42/** \} */
43#endif // GNSS_SDR_TRACKINGCMD_H_