2017-02-02 19:05:15 +00:00
|
|
|
/*!
|
|
|
|
* \file tlm_dump_reader.h
|
|
|
|
* \brief Helper file for unit testing
|
|
|
|
* \author Javier Arribas, 2017. jarribas(at)cttc.es
|
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2017-02-02 19:05:15 +00:00
|
|
|
*
|
2020-12-30 12:35:06 +00:00
|
|
|
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2017-02-02 19:05:15 +00:00
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
2020-12-30 12:35:06 +00:00
|
|
|
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
|
2020-02-08 00:20:02 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2017-02-02 19:05:15 +00:00
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2017-02-02 19:05:15 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-08 09:10:46 +00:00
|
|
|
#ifndef GNSS_SDR_TLM_DUMP_READER_H
|
|
|
|
#define GNSS_SDR_TLM_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 Tlm_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
|
|
|
~Tlm_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
|
|
|
// telemetry decoder dump variables
|
2017-02-02 15:41:58 +00:00
|
|
|
double TOW_at_current_symbol;
|
2018-08-10 19:16:10 +00:00
|
|
|
uint64_t Tracking_sample_counter;
|
2017-02-02 15:41:58 +00:00
|
|
|
double d_TOW_at_Preamble;
|
2020-11-19 08:55:08 +00:00
|
|
|
int32_t nav_symbol;
|
|
|
|
int32_t prn;
|
2017-02-02 15:41:58 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string d_dump_filename;
|
|
|
|
std::ifstream d_dump_file;
|
|
|
|
};
|
|
|
|
|
2020-02-08 09:10:46 +00:00
|
|
|
#endif // GNSS_SDR_TLM_DUMP_READER_H
|