mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-02-04 21:29:18 +00:00
Unnecessary include removed
git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@190 64b25241-fba3-4117-9849-534c7e92360d
This commit is contained in:
parent
3533a08330
commit
0d6462e52a
@ -33,7 +33,7 @@
|
|||||||
#include <gnuradio/gr_uhd_usrp_source.h>
|
#include <gnuradio/gr_uhd_usrp_source.h>
|
||||||
#include <uhd/types/device_addr.hpp>
|
#include <uhd/types/device_addr.hpp>
|
||||||
#include <uhd/exception.hpp>
|
#include <uhd/exception.hpp>
|
||||||
#include <boost/program_options.hpp>
|
//#include <boost/program_options.hpp>
|
||||||
#include <gnuradio/gr_file_sink.h>
|
#include <gnuradio/gr_file_sink.h>
|
||||||
#include "configuration_interface.h"
|
#include "configuration_interface.h"
|
||||||
#include "gnss_sdr_valve.h"
|
#include "gnss_sdr_valve.h"
|
||||||
@ -88,15 +88,15 @@ UhdSignalSource::UhdSignalSource(ConfigurationInterface* configuration,
|
|||||||
// 1. Make the uhd driver instance
|
// 1. Make the uhd driver instance
|
||||||
//uhd_source_= uhd::usrp::multi_usrp::make(dev_addr);
|
//uhd_source_= uhd::usrp::multi_usrp::make(dev_addr);
|
||||||
|
|
||||||
// sigle source
|
// single source
|
||||||
// * \param device_addr the address to identify the hardware
|
// * \param device_addr the address to identify the hardware
|
||||||
// * \param io_type the desired output data type
|
// * \param io_type the desired output data type
|
||||||
uhd_source_= uhd_make_usrp_source(dev_addr,uhd::stream_args_t("fc32"));
|
uhd_source_ = uhd_make_usrp_source(dev_addr, uhd::stream_args_t("fc32"));
|
||||||
|
|
||||||
|
|
||||||
// 2.1 set sampling clock reference
|
// 2.1 set sampling clock reference
|
||||||
//Lock mboard clocks internal, external, or mimo
|
//Lock mboard clocks internal, external, or mimo
|
||||||
std::string clk_reference="internal";
|
std::string clk_reference = "internal";
|
||||||
uhd_source_->set_clock_source(clk_reference);
|
uhd_source_->set_clock_source(clk_reference);
|
||||||
|
|
||||||
// 2.2 set sampling rate
|
// 2.2 set sampling rate
|
||||||
|
Loading…
Reference in New Issue
Block a user