1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-03-03 18:25:23 +00:00

Add GNSS-SDR.osnma_enable configuration parameter, by default set to true

This commit is contained in:
Carles Fernandez 2024-06-28 13:03:14 +02:00
parent c38fb0fca5
commit 359693c0e8
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -121,7 +121,7 @@ void GNSSFlowgraph::init()
galileo_tow_map_ = nullptr;
}
if (configuration_->property("Channels_1B.count", 0) > 0)
if (configuration_->property("Channels_1B.count", 0) > 0 && configuration_->property("GNSS-SDR.osnma_enable", true))
{
enable_osnma_rx_ = true;
const auto certFilePath = configuration_->property("GNSS-SDR.osnma_public_key", CRTFILE_DEFAULT);