mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-09-02 02:48:00 +00:00
Rename file
This commit is contained in:
@@ -25,8 +25,8 @@
|
||||
#include "gps_almanac.h" // for Gps_Almanac
|
||||
#include "gps_ephemeris.h" // for Gps_Ephemeris
|
||||
#include "pvt_conf.h" // for Pvt_Conf
|
||||
#include "receiver_type.h" // for get_type_of_receiver
|
||||
#include "rtklib_rtkpos.h" // for rtkfree, rtkinit
|
||||
#include "signal_enabled_flags.h" // for get_type_of_receiver
|
||||
#include <iostream> // for std::cout
|
||||
#if USE_GLOG_AND_GFLAGS
|
||||
#include <glog/logging.h>
|
||||
|
@@ -54,11 +54,11 @@
|
||||
#include "nmea_printer.h"
|
||||
#include "osnma_data.h"
|
||||
#include "pvt_conf.h"
|
||||
#include "receiver_type.h"
|
||||
#include "rinex_printer.h"
|
||||
#include "rtcm_printer.h"
|
||||
#include "rtklib_rtkcmn.h"
|
||||
#include "rtklib_solver.h"
|
||||
#include "signal_enabled_flags.h"
|
||||
#include "trackingcmd.h"
|
||||
#include <boost/archive/xml_iarchive.hpp> // for xml_iarchive
|
||||
#include <boost/archive/xml_oarchive.hpp> // for xml_oarchive
|
||||
|
@@ -24,7 +24,7 @@ set(PVT_LIB_SOURCES
|
||||
has_simple_printer.cc
|
||||
geohash.cc
|
||||
pvt_kf.cc
|
||||
receiver_type.cc
|
||||
signal_enabled_flags.cc
|
||||
)
|
||||
|
||||
set(PVT_LIB_HEADERS
|
||||
@@ -48,7 +48,7 @@ set(PVT_LIB_HEADERS
|
||||
has_simple_printer.h
|
||||
geohash.h
|
||||
pvt_kf.h
|
||||
receiver_type.h
|
||||
signal_enabled_flags.h
|
||||
)
|
||||
|
||||
list(SORT PVT_LIB_HEADERS)
|
||||
|
@@ -35,8 +35,8 @@
|
||||
#include "gps_iono.h"
|
||||
#include "gps_navigation_message.h"
|
||||
#include "gps_utc_model.h"
|
||||
#include "receiver_type.h"
|
||||
#include "rtklib_solver.h"
|
||||
#include "signal_enabled_flags.h"
|
||||
#include <boost/date_time/gregorian/gregorian.hpp>
|
||||
#include <boost/date_time/local_time/local_time.hpp>
|
||||
#include <boost/date_time/time_zone_base.hpp>
|
||||
|
@@ -27,9 +27,9 @@
|
||||
#include "gnss_synchro.h"
|
||||
#include "gps_cnav_ephemeris.h"
|
||||
#include "gps_ephemeris.h"
|
||||
#include "receiver_type.h"
|
||||
#include "rtcm.h"
|
||||
#include "rtklib_solver.h"
|
||||
#include "signal_enabled_flags.h"
|
||||
#include <boost/exception/diagnostic_information.hpp>
|
||||
#include <ctime> // for tm
|
||||
#include <exception> // for exception
|
||||
|
@@ -33,8 +33,8 @@
|
||||
#include "rtklib_solver.h"
|
||||
#include "Beidou_DNAV.h"
|
||||
#include "gnss_sdr_filesystem.h"
|
||||
#include "receiver_type.h"
|
||||
#include "rtklib_rtkpos.h"
|
||||
#include "signal_enabled_flags.h"
|
||||
#include <matio.h>
|
||||
#include <cmath>
|
||||
#include <exception>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* \file receiver_type.cc
|
||||
* \brief Helper function to get the receiver type
|
||||
* \file signal_enabled_flags.cc
|
||||
* \brief Class to check the enabled signals
|
||||
* \author Mathieu Favreau, 2025. favreau.mathieu(at)hotmail.com
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
@@ -14,7 +14,7 @@
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "receiver_type.h"
|
||||
#include "signal_enabled_flags.h"
|
||||
#include "configuration_interface.h" // for ConfigurationInterface
|
||||
#include <vector> // for vector
|
||||
|
@@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* \file receiver_type.h
|
||||
* \brief Helper function to get the receiver type
|
||||
* \file signal_enabled_flags.h
|
||||
* \brief Class to check the enabled signals
|
||||
* \author Mathieu Favreau, 2025. favreau.mathieu(at)hotmail.com
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
@@ -14,8 +14,8 @@
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef GNSS_SDR_RECEIVER_TYPE_H
|
||||
#define GNSS_SDR_RECEIVER_TYPE_H
|
||||
#ifndef GNSS_SDR_SIGNAL_ENABLED_FLAGS_H
|
||||
#define GNSS_SDR_SIGNAL_ENABLED_FLAGS_H
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
@@ -69,4 +69,4 @@ public:
|
||||
const uint32_t flags;
|
||||
};
|
||||
|
||||
#endif // GNSS_SDR_RECEIVER_TYPE_H
|
||||
#endif // GNSS_SDR_SIGNAL_ENABLED_FLAGS_H
|
@@ -17,9 +17,9 @@
|
||||
|
||||
#include "nmea_printer.h"
|
||||
#include "pvt_conf.h"
|
||||
#include "receiver_type.h"
|
||||
#include "rtklib_rtkpos.h"
|
||||
#include "rtklib_solver.h"
|
||||
#include "signal_enabled_flags.h"
|
||||
#include <gtest/gtest.h>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
|
@@ -15,10 +15,10 @@
|
||||
*/
|
||||
|
||||
#include "pvt_conf.h"
|
||||
#include "receiver_type.h"
|
||||
#include "rinex_printer.h"
|
||||
#include "rtklib_rtkpos.h"
|
||||
#include "rtklib_solver.h"
|
||||
#include "signal_enabled_flags.h"
|
||||
#include <gtest/gtest.h>
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
|
Reference in New Issue
Block a user