aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDimitri Stolnikov <horiz0n@gmx.net>2013-05-07 22:44:08 +0200
committerDimitri Stolnikov <horiz0n@gmx.net>2013-05-07 22:44:08 +0200
commit52e1272ba5962817af2dce5ac7eb6a670e3f8913 (patch)
tree1fbe439ea694792f6c30164228c9d103eef2cb56 /lib
parent80b4ad29212c4745ade265cedbd16f22072761ed (diff)
uhd: update includes
Diffstat (limited to 'lib')
-rw-r--r--lib/osmosdr_source_c_impl.cc4
-rw-r--r--lib/uhd/uhd_source_c.cc4
-rw-r--r--lib/uhd/uhd_source_c.h5
3 files changed, 5 insertions, 8 deletions
diff --git a/lib/osmosdr_source_c_impl.cc b/lib/osmosdr_source_c_impl.cc
index f05e522..09f29cb 100644
--- a/lib/osmosdr_source_c_impl.cc
+++ b/lib/osmosdr_source_c_impl.cc
@@ -124,7 +124,7 @@ osmosdr_source_c_impl::osmosdr_source_c_impl (const std::string &args)
std::cerr << "gr-osmosdr "
<< GR_OSMOSDR_VERSION " (" GR_OSMOSDR_LIBVER ") "
<< "gnuradio " << gr_version() << std::endl;
- std::cerr << "built-in device types: ";
+ std::cerr << "built-in source types: ";
BOOST_FOREACH(std::string dev_type, dev_types)
std::cerr << dev_type << " ";
std::cerr << std::endl << std::flush;
@@ -164,7 +164,7 @@ osmosdr_source_c_impl::osmosdr_source_c_impl (const std::string &args)
#endif
#ifdef ENABLE_HACKRF
BOOST_FOREACH( std::string dev, hackrf_source_c::get_devices() )
- dev_list.push_back( dev );
+ dev_list.push_back( dev );
#endif
// std::cerr << std::endl;
// BOOST_FOREACH( std::string dev, dev_list )
diff --git a/lib/uhd/uhd_source_c.cc b/lib/uhd/uhd_source_c.cc
index 79c4e47..ec33610 100644
--- a/lib/uhd/uhd_source_c.cc
+++ b/lib/uhd/uhd_source_c.cc
@@ -24,9 +24,7 @@
//#include <uhd/property_tree.hpp>
-#include <gr_io_signature.h>
-
-#include <osmosdr_arg_helpers.h>
+#include "osmosdr_arg_helpers.h"
#include "uhd_source_c.h"
diff --git a/lib/uhd/uhd_source_c.h b/lib/uhd/uhd_source_c.h
index b97eaea..84a7965 100644
--- a/lib/uhd/uhd_source_c.h
+++ b/lib/uhd/uhd_source_c.h
@@ -20,9 +20,8 @@
#ifndef UHD_SOURCE_C_H
#define UHD_SOURCE_C_H
-#include <gr_hier_block2.h>
-
-#include <gr_uhd_usrp_source.h>
+#include <gnuradio/gr_hier_block2.h>
+#include <gnuradio/gr_uhd_usrp_source.h>
#include "osmosdr_src_iface.h"