mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-18 21:23:02 +00:00
Merge branch 'next' of https://github.com/gnss-sdr/gnss-sdr into galileo-e6
This commit is contained in:
commit
54a618cf58
@ -19,6 +19,8 @@ All notable changes to GNSS-SDR will be documented in this file.
|
||||
- Improved Time-To-First-Fix when using GPS L1 C/A signals, fixing a bug that
|
||||
was making the receiver to drop the satellite if the PLL got locked at 180
|
||||
degrees, and making some optimizations on bit transition detection.
|
||||
- Fixed a bug that prevented from obtaining PVT fixes with Galileo E1 OS signals
|
||||
if the I/NAV subframe type 0 was the first decoded subframe.
|
||||
|
||||
### Improvements in Interoperability:
|
||||
|
||||
@ -48,9 +50,13 @@ All notable changes to GNSS-SDR will be documented in this file.
|
||||
### Improvements in Portability:
|
||||
|
||||
- Fixed building against the new API in the gr-iio component present in GNU
|
||||
Radio's `master` branch (currently v3.10.0.git).
|
||||
- Fixed building against current GNU Radio's `master` branch, which does not
|
||||
support the C++20 standard.
|
||||
Radio v3.10.0.0-rc1.
|
||||
- Fixed building against GNU Radio v3.10.0.0-rc1, which does not support the
|
||||
C++20 standard.
|
||||
- Fixed building against GNU Radio v3.10.0.0-rc1, which replaced
|
||||
[log4cpp](http://log4cpp.sourceforge.net/) by
|
||||
[spdlog](https://github.com/gabime/spdlog) and
|
||||
[fmt](https://github.com/fmtlib/fmt) libraries.
|
||||
- Updated `cpu_features` library for improved processor detection.
|
||||
|
||||
### Improvements in Reliability:
|
||||
|
@ -882,15 +882,13 @@ int galileo_telemetry_decoder_gs::general_work(int noutput_items __attribute__((
|
||||
d_TOW_at_current_symbol_ms = d_TOW_at_Preamble_ms + static_cast<uint32_t>(GALILEO_INAV_PAGE_PART_MS + (d_required_symbols + 1) * d_PRN_code_period_ms);
|
||||
d_inav_nav.set_TOW6_flag(false);
|
||||
}
|
||||
// warning: type 0 frame does not contain a valid TOW in some simulated signals, thus it is not safe to activate the following code:
|
||||
// else if (d_inav_nav.is_TOW0_set() == true) // page 0 arrived and decoded
|
||||
// {
|
||||
// // TOW_0 refers to the even preamble, but when we decode it we are in the odd part, so 1 second later plus the decoding delay
|
||||
// d_TOW_at_Preamble_ms = static_cast<uint32_t>(d_inav_nav.get_TOW0() * 1000.0);
|
||||
// d_TOW_at_current_symbol_ms = d_TOW_at_Preamble_ms + static_cast<uint32_t>(GALILEO_INAV_PAGE_PART_MS + (d_required_symbols + 1) * d_PRN_code_period_ms);
|
||||
// d_inav_nav.set_TOW0_flag(false);
|
||||
// // std::cout << "FRAME 0 current tow: " << tmp_d_TOW_at_current_symbol_ms << " vs. " << d_TOW_at_current_symbol_ms + d_PRN_code_period_ms << "\n";
|
||||
// }
|
||||
else if (d_inav_nav.is_TOW0_set() == true) // page 0 arrived and decoded
|
||||
{
|
||||
// TOW_0 refers to the even preamble, but when we decode it we are in the odd part, so 1 second later plus the decoding delay
|
||||
d_TOW_at_Preamble_ms = static_cast<uint32_t>(d_inav_nav.get_TOW0() * 1000.0);
|
||||
d_TOW_at_current_symbol_ms = d_TOW_at_Preamble_ms + static_cast<uint32_t>(GALILEO_INAV_PAGE_PART_MS + (d_required_symbols + 1) * d_PRN_code_period_ms);
|
||||
d_inav_nav.set_TOW0_flag(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
// this page has no timing information
|
||||
|
Loading…
Reference in New Issue
Block a user