/*! * \file gps_l1_ca_telemetry_decoder_gs.h * \brief Interface of a NAV message demodulator block based on * Kay Borre book MATLAB-based GPS receiver * \author Javier Arribas, 2011. jarribas(at)cttc.es * ------------------------------------------------------------------------- * * Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors) * * GNSS-SDR is a software defined Global Navigation * Satellite Systems receiver * * This file is part of GNSS-SDR. * * SPDX-License-Identifier: GPL-3.0-or-later * * ------------------------------------------------------------------------- */ #ifndef GNSS_SDR_GPS_L1_CA_TELEMETRY_DECODER_GS_H #define GNSS_SDR_GPS_L1_CA_TELEMETRY_DECODER_GS_H #include "GPS_L1_CA.h" #include "gnss_satellite.h" #include "gnss_synchro.h" #include "gps_navigation_message.h" #include #include // for block #include // for gr_vector_const_void_star #include // for array #include // for int32_t #include // for ofstream #include // for string #if GNURADIO_USES_STD_POINTERS #include // for std::shared_ptr #else #include #endif class gps_l1_ca_telemetry_decoder_gs; #if GNURADIO_USES_STD_POINTERS using gps_l1_ca_telemetry_decoder_gs_sptr = std::shared_ptr; #else using gps_l1_ca_telemetry_decoder_gs_sptr = boost::shared_ptr; #endif gps_l1_ca_telemetry_decoder_gs_sptr gps_l1_ca_make_telemetry_decoder_gs( const Gnss_Satellite &satellite, bool dump); /*! * \brief This class implements a block that decodes the NAV data defined in IS-GPS-200K */ class gps_l1_ca_telemetry_decoder_gs : public gr::block { public: ~gps_l1_ca_telemetry_decoder_gs(); void set_satellite(const Gnss_Satellite &satellite); //!< Set satellite PRN void set_channel(int channel); //!< Set receiver's channel void reset(); /*! * \brief This is where all signal processing takes place */ int general_work(int noutput_items, gr_vector_int &ninput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); private: friend gps_l1_ca_telemetry_decoder_gs_sptr gps_l1_ca_make_telemetry_decoder_gs( const Gnss_Satellite &satellite, bool dump); gps_l1_ca_telemetry_decoder_gs(const Gnss_Satellite &satellite, bool dump); bool gps_word_parityCheck(uint32_t gpsword); bool decode_subframe(); Gps_Navigation_Message d_nav; Gnss_Satellite d_satellite; std::array d_preamble_samples{}; std::string d_dump_filename; std::ofstream d_dump_file; boost::circular_buffer d_symbol_history; uint64_t d_sample_counter; uint64_t d_preamble_index; uint64_t d_last_valid_preamble; int32_t d_bits_per_preamble; int32_t d_samples_per_preamble; int32_t d_preamble_period_symbols; int32_t d_CRC_error_counter; int32_t d_channel; uint32_t d_required_symbols; uint32_t d_frame_length_symbols; uint32_t d_prev_GPS_frame_4bytes; uint32_t d_max_symbols_without_valid_frame; uint32_t d_stat; uint32_t d_TOW_at_Preamble_ms; uint32_t d_TOW_at_current_symbol_ms; bool d_flag_frame_sync; bool d_flag_parity; bool d_flag_preamble; bool d_sent_tlm_failed_msg; bool d_flag_PLL_180_deg_phase_locked; bool d_flag_TOW_set; bool d_dump; }; #endif // GNSS_SDR_GPS_L1_CA_TELEMETRY_DECODER_GS_H