1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-21 09:34:53 +00:00

Applying patch by Leonardo Tonetto

0001-Saving-acquisition-assistance-data.patch
This commit is contained in:
Carles Fernandez
2014-04-25 21:48:52 +02:00
parent 7db1180d0a
commit f371823fc0
5 changed files with 187 additions and 98 deletions

View File

@@ -140,11 +140,31 @@ private:
*/
void gps_utc_model_data_collector();
/*
* \brief Blocking function that reads the ref location queue and updates the shared map
*/
void gps_ref_location_data_collector();
/*
* \brief Blocking function that reads the ref time queue and updates the shared map
*/
void gps_ref_time_data_collector();
/*
* \brief Write the latest GPS UTC model to XML file
*/
void gps_utc_model_data_write_to_XML();
/*
* \brief Write the latest ref location to XML file (AGPS)
*/
void gps_ref_location_data_write_to_XML();
/*
* \brief Write the latest ref time to XML file (AGPS)
*/
void gps_ref_time_data_write_to_XML();
/*
* \brief Blocking function that reads the iono model queue and updates the shared map, accessible from the PVT block
*/
@@ -187,6 +207,8 @@ private:
boost::thread gps_iono_data_collector_thread_;
boost::thread gps_utc_model_data_collector_thread_;
boost::thread gps_acq_assist_data_collector_thread_;
boost::thread gps_ref_location_data_collector_thread_;
boost::thread gps_ref_time_data_collector_thread_;
boost::thread galileo_ephemeris_data_collector_thread_;
boost::thread galileo_utc_model_data_collector_thread_;