GNSS-SDR  0.0.19
An Open Source GNSS Software Defined Receiver
glonass_l2_ca_telemetry_decoder_gs.h
Go to the documentation of this file.
1 /*!
2  * \file glonass_l2_ca_telemetry_decoder_gs.h
3  * \brief Implementation of a GLONASS L2 C/A NAV data decoder block
4  * \author Damian Miralles, 2018. dmiralles2009(at)gmail.com
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-2020 (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_GLONASS_L2_CA_TELEMETRY_DECODER_GS_H
18 #define GNSS_SDR_GLONASS_L2_CA_TELEMETRY_DECODER_GS_H
19 
20 
21 #include "GLONASS_L1_L2_CA.h"
23 #include "gnss_block_interface.h"
24 #include "gnss_satellite.h"
25 #include "gnss_synchro.h"
26 #include "nav_message_packet.h"
27 #include "tlm_conf.h"
28 #include "tlm_crc_stats.h"
29 #include <boost/circular_buffer.hpp>
30 #include <gnuradio/block.h>
31 #include <gnuradio/types.h> // for gr_vector_const_void_star
32 #include <array>
33 #include <cstdint>
34 #include <fstream>
35 #include <memory> // for std::unique_ptr
36 #include <string>
37 
38 /** \addtogroup Telemetry_Decoder
39  * \{ */
40 /** \addtogroup Telemetry_Decoder_gnuradio_blocks
41  * \{ */
42 
43 
45 
46 using glonass_l2_ca_telemetry_decoder_gs_sptr = gnss_shared_ptr<glonass_l2_ca_telemetry_decoder_gs>;
47 
48 glonass_l2_ca_telemetry_decoder_gs_sptr glonass_l2_ca_make_telemetry_decoder_gs(
49  const Gnss_Satellite &satellite,
50  const Tlm_Conf &conf);
51 
52 /*!
53  * \brief This class implements a block that decodes the GNAV data defined in GLONASS ICD v5.1
54  * \see <a href="http://russianspacesystems.ru/wp-content/uploads/2016/08/ICD_GLONASS_eng_v5.1.pdf">GLONASS ICD</a>
55  *
56  */
57 class glonass_l2_ca_telemetry_decoder_gs : public gr::block
58 {
59 public:
60  ~glonass_l2_ca_telemetry_decoder_gs() override; //!< Class destructor
61  void set_satellite(const Gnss_Satellite &satellite); //!< Set satellite PRN
62  void set_channel(int32_t channel); //!< Set receiver's channel
63  inline void reset(){};
64 
65  /*!
66  * \brief This is where all signal processing takes place
67  */
68  int general_work(int noutput_items, gr_vector_int &ninput_items,
69  gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) override;
70 
71 private:
72  friend glonass_l2_ca_telemetry_decoder_gs_sptr glonass_l2_ca_make_telemetry_decoder_gs(
73  const Gnss_Satellite &satellite,
74  const Tlm_Conf &conf);
75 
76  glonass_l2_ca_telemetry_decoder_gs(const Gnss_Satellite &satellite, const Tlm_Conf &conf);
77 
78  const std::array<uint16_t, GLONASS_GNAV_PREAMBLE_LENGTH_BITS> d_preambles_bits{GLONASS_GNAV_PREAMBLE};
79 
80  const int32_t d_symbols_per_preamble = GLONASS_GNAV_PREAMBLE_LENGTH_SYMBOLS;
81 
82  void decode_string(const double *symbols, int32_t frame_length, double cn0);
83 
84  // Storage for incoming data
85  boost::circular_buffer<Gnss_Synchro> d_symbol_history;
86 
87  std::array<int32_t, GLONASS_GNAV_PREAMBLE_LENGTH_SYMBOLS> d_preambles_symbols{};
88 
89  // Navigation Message variable
91  Gnss_Satellite d_satellite;
92 
93  Nav_Message_Packet d_nav_msg_packet;
94  std::unique_ptr<Tlm_CRC_Stats> d_Tlm_CRC_Stats;
95 
96  std::string d_dump_filename;
97  std::ofstream d_dump_file;
98 
99  double d_preamble_time_samples;
100  double d_TOW_at_current_symbol;
101 
102  uint64_t d_sample_counter; // Sample counter as an index (1,2,3,..etc) indicating number of samples processed
103  uint64_t d_preamble_index; // Index of sample number where preamble was found
104  uint32_t d_stat; // Status of decoder
105 
106  int32_t d_CRC_error_counter; // Number of failed CRC operations
107  int32_t d_channel;
108 
109  bool d_flag_frame_sync; // Indicate when a frame sync is achieved
110  bool d_flag_preamble; // Flag indicating when preamble was found
111  bool d_dump;
112  bool d_dump_mat;
113  bool d_remove_dat;
114  bool d_enable_navdata_monitor;
115  bool d_dump_crc_stats;
116 };
117 
118 
119 /** \} */
120 /** \} */
121 #endif // GNSS_SDR_GLONASS_L2_CA_TELEMETRY_DECODER_GS_H
Defines system parameters for GLONASS L1 C/A signal and NAV data.
Class that contains all the configuration parameters for generic telemetry decoder block...
~glonass_l2_ca_telemetry_decoder_gs() override
Class destructor.
Class that computes the telemetry CRC statistics.
This interface represents a GNSS block.
void set_channel(int32_t channel)
Set receiver&#39;s channel.
Interface of the Gnss_Satellite class.
This class represents a GNSS satellite.
Interface of a GLONASS GNAV Data message decoder as described in GLONASS ICD (Edition 5...
int general_work(int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) override
This is where all signal processing takes place.
void set_satellite(const Gnss_Satellite &satellite)
Set satellite PRN.
This class decodes a GLONASS GNAV Data message as described in GLONASS ICD (Edition 5...
This class implements a block that decodes the GNAV data defined in GLONASS ICD v5.1.
Interface of the Gnss_Synchro class.