mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-18 21:23:02 +00:00
Allow for multi-system configurations containing Galileo E6
This commit is contained in:
parent
65c7af282a
commit
45e1fa3ade
@ -813,11 +813,15 @@ int GNSSFlowgraph::connect_galileo_tow_map()
|
||||
try
|
||||
{
|
||||
for (int i = 0; i < channels_count_; i++)
|
||||
{
|
||||
std::string sig = channels_.at(i)->get_signal().get_signal_str();
|
||||
if (sig == "1B" || sig == "E6" || sig == "5X" || sig == "7X")
|
||||
{
|
||||
top_block_->msg_connect(channels_.at(i)->get_right_block(), pmt::mp("TOW_from_TLM"), galileo_tow_map_, pmt::mp("TOW_from_TLM"));
|
||||
top_block_->msg_connect(galileo_tow_map_, pmt::mp("TOW_to_TLM"), channels_.at(i)->get_right_block(), pmt::mp("TOW_to_TLM"));
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (const std::exception& e)
|
||||
{
|
||||
LOG(ERROR) << "Can't connect The Galileo TOW map internally: " << e.what();
|
||||
|
Loading…
Reference in New Issue
Block a user