mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-08-06 22:04:07 +00:00
Fix reading of .repeat_satellite parameter
This commit is contained in:
parent
df4c965447
commit
9a4bd51063
@ -89,8 +89,8 @@ Channel::Channel(const ConfigurationInterface* configuration,
|
|||||||
acq_->set_threshold(threshold);
|
acq_->set_threshold(threshold);
|
||||||
|
|
||||||
acq_->init();
|
acq_->init();
|
||||||
|
repeat_ = configuration->property("Acquisition_" + signal_str + ".repeat_satellite", false);
|
||||||
repeat_ = configuration->property("Acquisition_" + signal_str + std::to_string(channel_) + ".repeat_satellite", false);
|
repeat_ = configuration->property("Acquisition_" + signal_str + std::to_string(channel_) + ".repeat_satellite", repeat_);
|
||||||
DLOG(INFO) << "Channel " << channel_ << " satellite repeat = " << repeat_;
|
DLOG(INFO) << "Channel " << channel_ << " satellite repeat = " << repeat_;
|
||||||
|
|
||||||
channel_fsm_->set_acquisition(acq_);
|
channel_fsm_->set_acquisition(acq_);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
# SPDX-License-Identifier: BSD-3-Clause
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
|
|
||||||
########################################################################
|
########################################################################
|
||||||
# Toolchain file for building native on a ARM Cortex A72 w/ NEON
|
# Toolchain file for building native on a ARM Cortex A53 w/ NEON
|
||||||
# Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory>
|
# Usage: cmake -DCMAKE_TOOLCHAIN_FILE=<this file> <source directory>
|
||||||
########################################################################
|
########################################################################
|
||||||
set(CMAKE_CXX_COMPILER g++)
|
set(CMAKE_CXX_COMPILER g++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user