mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
Reorder includes
This commit is contained in:
parent
f0424617bd
commit
5f40824c4f
@ -1,8 +1,7 @@
|
|||||||
/*!
|
/*!
|
||||||
* \file beidou_b1i_telemetry_decoder_gs.h
|
* \file beidou_b1i_telemetry_decoder_gs.h
|
||||||
* \brief Implementation of a BEIDOU BI1 DNAV data decoder block
|
* \brief Implementation of a BEIDOU BI1 DNAV data decoder block
|
||||||
* \details Code added as part of GSoC 2018 program. However new modifications
|
* \details Code added as part of GSoC 2018 program.
|
||||||
* included to mimic decoding of existing signals
|
|
||||||
* \author Damian Miralles, 2018. dmiralles2009(at)gmail.com
|
* \author Damian Miralles, 2018. dmiralles2009(at)gmail.com
|
||||||
* \author Sergi Segura, 2018. sergi.segura.munoz(at)gmail.es
|
* \author Sergi Segura, 2018. sergi.segura.munoz(at)gmail.es
|
||||||
*
|
*
|
||||||
@ -35,15 +34,15 @@
|
|||||||
#define GNSS_SDR_BEIDOU_B1I_TELEMETRY_DECODER_GS_H
|
#define GNSS_SDR_BEIDOU_B1I_TELEMETRY_DECODER_GS_H
|
||||||
|
|
||||||
|
|
||||||
#include "gnss_satellite.h"
|
|
||||||
#include "beidou_dnav_navigation_message.h"
|
#include "beidou_dnav_navigation_message.h"
|
||||||
|
#include "gnss_satellite.h"
|
||||||
#include <boost/circular_buffer.hpp>
|
#include <boost/circular_buffer.hpp>
|
||||||
#include <gnuradio/block.h>
|
#include <boost/shared_ptr.hpp> // for boost::shared_ptr
|
||||||
|
#include <gnuradio/block.h> // for block
|
||||||
#include <gnuradio/types.h> // for gr_vector_const_void_star
|
#include <gnuradio/types.h> // for gr_vector_const_void_star
|
||||||
|
#include <cstdint>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <boost/shared_ptr.hpp> // for boost::shared_ptr
|
|
||||||
#include <cstdint>
|
|
||||||
|
|
||||||
|
|
||||||
class beidou_b1i_telemetry_decoder_gs;
|
class beidou_b1i_telemetry_decoder_gs;
|
||||||
@ -52,12 +51,10 @@ using beidou_b1i_telemetry_decoder_gs_sptr = boost::shared_ptr<beidou_b1i_teleme
|
|||||||
|
|
||||||
beidou_b1i_telemetry_decoder_gs_sptr beidou_b1i_make_telemetry_decoder_gs(const Gnss_Satellite &satellite, bool dump);
|
beidou_b1i_telemetry_decoder_gs_sptr beidou_b1i_make_telemetry_decoder_gs(const Gnss_Satellite &satellite, bool dump);
|
||||||
|
|
||||||
//!!!! edit
|
|
||||||
/*!
|
/*!
|
||||||
* \brief This class implements a block that decodes the GNAV data defined in BEIDOU ICD v5.1
|
* \brief This class implements a block that decodes the GNAV data defined in BEIDOU ICD v5.1
|
||||||
* \note Code added as part of GSoC 2018 program
|
* \note Code added as part of GSoC 2018 program
|
||||||
* \see <a href="http://russianspacesystems.ru/wp-content/uploads/2016/08/ICD_GLONASS_eng_v5.1.pdf">GLONASS ICD</a>
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
class beidou_b1i_telemetry_decoder_gs : public gr::block
|
class beidou_b1i_telemetry_decoder_gs : public gr::block
|
||||||
{
|
{
|
||||||
|
@ -34,15 +34,15 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "galileo_fnav_message.h"
|
#include "galileo_fnav_message.h"
|
||||||
#include <boost/shared_ptr.hpp> // for boost::shared_ptr
|
|
||||||
#include <gnuradio/types.h> // for gr_vector_const_void_star
|
|
||||||
#include "galileo_navigation_message.h"
|
#include "galileo_navigation_message.h"
|
||||||
#include "gnss_satellite.h"
|
#include "gnss_satellite.h"
|
||||||
#include <boost/circular_buffer.hpp>
|
#include <boost/circular_buffer.hpp>
|
||||||
#include <gnuradio/block.h>
|
#include <boost/shared_ptr.hpp> // for boost::shared_ptr
|
||||||
|
#include <gnuradio/block.h> // for block
|
||||||
|
#include <gnuradio/types.h> // for gr_vector_const_void_star
|
||||||
|
#include <cstdint>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cstdint>
|
|
||||||
|
|
||||||
class galileo_telemetry_decoder_gs;
|
class galileo_telemetry_decoder_gs;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user