1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-02 08:13:04 +00:00

Bug fix in multisource/multichannel gnss_block_interface

This commit is contained in:
Javier
2015-02-27 10:36:09 +01:00
parent 8606191311
commit 5b37329200
4 changed files with 10 additions and 10 deletions

View File

@@ -292,6 +292,10 @@ gr::basic_block_sptr UhdSignalSource::get_left_block()
}
gr::basic_block_sptr UhdSignalSource::get_right_block()
{
return get_right_block(0);
}
gr::basic_block_sptr UhdSignalSource::get_right_block(int RF_channel)
{

View File

@@ -75,6 +75,7 @@ public:
void connect(gr::top_block_sptr top_block);
void disconnect(gr::top_block_sptr top_block);
gr::basic_block_sptr get_left_block();
gr::basic_block_sptr get_right_block();
gr::basic_block_sptr get_right_block(int RF_channel);
private: