2017-02-02 19:05:15 +00:00
|
|
|
/*!
|
|
|
|
* \file tracking_dump_reader.h
|
|
|
|
* \brief Helper file for unit testing
|
|
|
|
* \author Javier Arribas, 2017. jarribas(at)cttc.es
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2019-07-26 10:38:20 +00:00
|
|
|
* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
|
2017-02-02 19:05:15 +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-02-02 19:05:15 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
2017-02-02 15:41:58 +00:00
|
|
|
|
2019-09-13 06:56:37 +00:00
|
|
|
#ifndef GNSS_SDR_TRACKING_DUMP_READER_H_
|
|
|
|
#define GNSS_SDR_TRACKING_DUMP_READER_H_
|
2017-02-02 15:41:58 +00:00
|
|
|
|
2018-08-10 19:16:10 +00:00
|
|
|
#include <cstdint>
|
2017-02-02 15:41:58 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
class Tracking_Dump_Reader
|
2017-02-05 19:07:34 +00:00
|
|
|
{
|
2017-02-02 15:41:58 +00:00
|
|
|
public:
|
2019-02-22 09:47:24 +00:00
|
|
|
~Tracking_Dump_Reader();
|
2017-02-02 15:41:58 +00:00
|
|
|
bool read_binary_obs();
|
|
|
|
bool restart();
|
2018-08-10 19:16:10 +00:00
|
|
|
int64_t num_epochs();
|
2017-02-02 15:41:58 +00:00
|
|
|
bool open_obs_file(std::string out_file);
|
|
|
|
|
2019-08-18 23:29:04 +00:00
|
|
|
// tracking dump variables
|
2018-03-20 13:44:34 +00:00
|
|
|
// VEPLVL
|
|
|
|
float abs_VE;
|
2017-02-02 15:41:58 +00:00
|
|
|
float abs_E;
|
|
|
|
float abs_P;
|
|
|
|
float abs_L;
|
2018-03-20 13:44:34 +00:00
|
|
|
float abs_VL;
|
2017-02-02 15:41:58 +00:00
|
|
|
// PROMPT I and Q (to analyze navigation symbols)
|
|
|
|
float prompt_I;
|
|
|
|
float prompt_Q;
|
|
|
|
// PRN start sample stamp
|
2018-08-10 19:16:10 +00:00
|
|
|
uint64_t PRN_start_sample_count;
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
// accumulated carrier phase
|
2018-03-20 13:44:34 +00:00
|
|
|
float acc_carrier_phase_rad;
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
// carrier and code frequency
|
2018-03-20 13:44:34 +00:00
|
|
|
float carrier_doppler_hz;
|
2018-09-09 11:40:31 +00:00
|
|
|
float carrier_doppler_rate_hz_s;
|
2018-03-20 13:44:34 +00:00
|
|
|
float code_freq_chips;
|
2018-09-10 19:29:44 +00:00
|
|
|
float code_freq_rate_chips;
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
// PLL commands
|
2018-03-20 13:44:34 +00:00
|
|
|
float carr_error_hz;
|
|
|
|
float carr_error_filt_hz;
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
// DLL commands
|
2018-03-20 13:44:34 +00:00
|
|
|
float code_error_chips;
|
|
|
|
float code_error_filt_chips;
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
// CN0 and carrier lock test
|
2018-03-20 13:44:34 +00:00
|
|
|
float CN0_SNV_dB_Hz;
|
|
|
|
float carrier_lock_test;
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
// AUX vars (for debug purposes)
|
2018-03-20 13:44:34 +00:00
|
|
|
float aux1;
|
2017-02-02 15:41:58 +00:00
|
|
|
double aux2;
|
|
|
|
|
2017-07-12 18:02:34 +00:00
|
|
|
unsigned int PRN;
|
|
|
|
|
2017-02-02 15:41:58 +00:00
|
|
|
private:
|
|
|
|
std::string d_dump_filename;
|
|
|
|
std::ifstream d_dump_file;
|
|
|
|
};
|
|
|
|
|
2019-09-13 06:56:37 +00:00
|
|
|
#endif // GNSS_SDR_TRACKING_DUMP_READER_H_
|