mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 12:40:35 +00:00
Merge branch 'next' of https://github.com/gnss-sdr/gnss-sdr into next
This commit is contained in:
commit
1b3b6616f5
@ -35,3 +35,4 @@ list(SORT CORE_MONITOR_LIBS_HEADERS)
|
|||||||
add_library(core_monitor_lib ${CORE_MONITOR_LIBS_SOURCES} ${CORE_MONITOR_LIBS_HEADERS})
|
add_library(core_monitor_lib ${CORE_MONITOR_LIBS_SOURCES} ${CORE_MONITOR_LIBS_HEADERS})
|
||||||
source_group(Headers FILES ${CORE_MONITOR_LIBS_HEADERS})
|
source_group(Headers FILES ${CORE_MONITOR_LIBS_HEADERS})
|
||||||
target_link_libraries(core_monitor_lib ${Boost_LIBRARIES})
|
target_link_libraries(core_monitor_lib ${Boost_LIBRARIES})
|
||||||
|
add_dependencies(core_monitor_lib glog-${glog_RELEASE})
|
||||||
|
@ -83,6 +83,9 @@ public:
|
|||||||
template <class Archive>
|
template <class Archive>
|
||||||
void serialize(Archive& ar, const unsigned int version)
|
void serialize(Archive& ar, const unsigned int version)
|
||||||
{
|
{
|
||||||
|
if (version)
|
||||||
|
{
|
||||||
|
};
|
||||||
// Satellite and signal info
|
// Satellite and signal info
|
||||||
ar& System;
|
ar& System;
|
||||||
ar& Signal;
|
ar& Signal;
|
||||||
|
@ -167,6 +167,20 @@ acquisition_dump_reader::acquisition_dump_reader(const std::string& basename,
|
|||||||
{
|
{
|
||||||
std::cout << "¡¡¡Unreachable Acquisition dump file!!!" << std::endl;
|
std::cout << "¡¡¡Unreachable Acquisition dump file!!!" << std::endl;
|
||||||
}
|
}
|
||||||
|
acq_doppler_hz = 0.0;
|
||||||
|
acq_delay_samples = 0.0;
|
||||||
|
test_statistic = 0.0;
|
||||||
|
input_power = 0.0;
|
||||||
|
threshold = 0.0;
|
||||||
|
positive_acq = 0;
|
||||||
|
sample_counter = 0;
|
||||||
|
PRN = 0;
|
||||||
|
d_sat = 0;
|
||||||
|
d_doppler_max = doppler_max_;
|
||||||
|
d_doppler_step = doppler_step_;
|
||||||
|
d_samples_per_code = samples_per_code_;
|
||||||
|
d_num_doppler_bins = 0;
|
||||||
|
|
||||||
acquisition_dump_reader(basename,
|
acquisition_dump_reader(basename,
|
||||||
sat_,
|
sat_,
|
||||||
doppler_max_,
|
doppler_max_,
|
||||||
@ -176,6 +190,7 @@ acquisition_dump_reader::acquisition_dump_reader(const std::string& basename,
|
|||||||
execution);
|
execution);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
acquisition_dump_reader::acquisition_dump_reader(const std::string& basename,
|
acquisition_dump_reader::acquisition_dump_reader(const std::string& basename,
|
||||||
unsigned int sat,
|
unsigned int sat,
|
||||||
unsigned int doppler_max,
|
unsigned int doppler_max,
|
||||||
@ -197,6 +212,7 @@ acquisition_dump_reader::acquisition_dump_reader(const std::string& basename,
|
|||||||
positive_acq = 0;
|
positive_acq = 0;
|
||||||
sample_counter = 0;
|
sample_counter = 0;
|
||||||
PRN = 0;
|
PRN = 0;
|
||||||
|
if (d_doppler_step == 0) d_doppler_step = 1;
|
||||||
d_num_doppler_bins = static_cast<unsigned int>(ceil(static_cast<double>(static_cast<int>(d_doppler_max) - static_cast<int>(-d_doppler_max)) / static_cast<double>(d_doppler_step)));
|
d_num_doppler_bins = static_cast<unsigned int>(ceil(static_cast<double>(static_cast<int>(d_doppler_max) - static_cast<int>(-d_doppler_max)) / static_cast<double>(d_doppler_step)));
|
||||||
std::vector<std::vector<float> > mag_aux(d_num_doppler_bins, std::vector<float>(d_samples_per_code));
|
std::vector<std::vector<float> > mag_aux(d_num_doppler_bins, std::vector<float>(d_samples_per_code));
|
||||||
mag = mag_aux;
|
mag = mag_aux;
|
||||||
|
Loading…
Reference in New Issue
Block a user