mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-11-18 16:15:21 +00:00
fix: removed unused parameter
This was used in some past iteration of development, but not anymore.
This commit is contained in:
committed by
Carles Fernandez
parent
81501b4f72
commit
05e2401ef9
@@ -657,7 +657,7 @@ void hybrid_observables_gs::set_tag_timestamp_in_sdr_timeframe(const std::vector
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void hybrid_observables_gs::propagate_sensor_data(const std::vector<Gnss_Synchro> &data)
|
void hybrid_observables_gs::propagate_sensor_data()
|
||||||
{
|
{
|
||||||
if (d_sensor_data_tags.empty())
|
if (d_sensor_data_tags.empty())
|
||||||
{
|
{
|
||||||
@@ -822,7 +822,7 @@ int hybrid_observables_gs::general_work(int noutput_items __attribute__((unused)
|
|||||||
{
|
{
|
||||||
compute_pranges(epoch_data);
|
compute_pranges(epoch_data);
|
||||||
set_tag_timestamp_in_sdr_timeframe(epoch_data, d_Rx_clock_buffer.front());
|
set_tag_timestamp_in_sdr_timeframe(epoch_data, d_Rx_clock_buffer.front());
|
||||||
propagate_sensor_data(epoch_data);
|
propagate_sensor_data();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Carrier smoothing (optional)
|
// Carrier smoothing (optional)
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ private:
|
|||||||
|
|
||||||
void set_tag_timestamp_in_sdr_timeframe(const std::vector<Gnss_Synchro>& data, uint64_t rx_clock);
|
void set_tag_timestamp_in_sdr_timeframe(const std::vector<Gnss_Synchro>& data, uint64_t rx_clock);
|
||||||
|
|
||||||
void propagate_sensor_data(const std::vector<Gnss_Synchro>& data);
|
void propagate_sensor_data();
|
||||||
|
|
||||||
int32_t save_matfile() const;
|
int32_t save_matfile() const;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user