diff options
author | Tom Rondeau | 2012-03-27 21:46:48 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-03-27 21:46:48 -0400 |
commit | 8bfb47dd8fb661039bdfdc475047e6f983f11270 (patch) | |
tree | 448402699fabea713d3f54b35e7733617d273ab3 /gr-uhd/lib/gr_uhd_amsg_source.cc | |
parent | da09d2b000606b55f564bc6adaa945968d6c3e72 (diff) | |
parent | 79e341d9064b8e44c2d1900cb34ddb51deebb559 (diff) | |
download | gnuradio-8bfb47dd8fb661039bdfdc475047e6f983f11270.tar.gz gnuradio-8bfb47dd8fb661039bdfdc475047e6f983f11270.tar.bz2 gnuradio-8bfb47dd8fb661039bdfdc475047e6f983f11270.zip |
Merge branch 'master' of gnuradio.org:gnuradio
Diffstat (limited to 'gr-uhd/lib/gr_uhd_amsg_source.cc')
-rw-r--r-- | gr-uhd/lib/gr_uhd_amsg_source.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-uhd/lib/gr_uhd_amsg_source.cc b/gr-uhd/lib/gr_uhd_amsg_source.cc index 08941584b..67e402f6b 100644 --- a/gr-uhd/lib/gr_uhd_amsg_source.cc +++ b/gr-uhd/lib/gr_uhd_amsg_source.cc @@ -1,5 +1,5 @@ /* - * Copyright 2011 Free Software Foundation, Inc. + * Copyright 2011-2012 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -22,6 +22,7 @@ #include <gr_uhd_amsg_source.h> #include <boost/bind.hpp> #include <gruel/thread.h> +#include "gr_uhd_common.h" /*********************************************************************** * UHD Asynchronous Message Source Impl @@ -87,6 +88,7 @@ boost::shared_ptr<uhd_amsg_source> uhd_make_amsg_source( const uhd::device_addr_t &device_addr, gr_msg_queue_sptr msgq ){ + gr_uhd_check_abi(); return boost::shared_ptr<uhd_amsg_source>( new uhd_amsg_source_impl(device_addr, msgq) ); |