diff options
author | Josh Blum | 2010-07-02 18:30:31 -0700 |
---|---|---|
committer | Josh Blum | 2010-07-02 18:30:31 -0700 |
commit | 4e636b2b4bb29d5224aeff4ae79af121020338f1 (patch) | |
tree | 69987b655cac611ba9531a461fc46102e49ae706 /gr-uhd/swig | |
parent | 1e71bdae9956d64e06bdfbb0c87530619807e100 (diff) | |
download | gnuradio-4e636b2b4bb29d5224aeff4ae79af121020338f1.tar.gz gnuradio-4e636b2b4bb29d5224aeff4ae79af121020338f1.tar.bz2 gnuradio-4e636b2b4bb29d5224aeff4ae79af121020338f1.zip |
uhd mimo: created mimo source and sink block for gr-uhd
Diffstat (limited to 'gr-uhd/swig')
-rw-r--r-- | gr-uhd/swig/uhd_swig.i | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gr-uhd/swig/uhd_swig.i b/gr-uhd/swig/uhd_swig.i index 5956a686c..34e140887 100644 --- a/gr-uhd/swig/uhd_swig.i +++ b/gr-uhd/swig/uhd_swig.i @@ -23,6 +23,8 @@ %include "gnuradio.i" %{ +#include <uhd_mimo_source.h> +#include <uhd_mimo_sink.h> #include <uhd_simple_source.h> #include <uhd_simple_sink.h> %} @@ -34,6 +36,12 @@ %include <uhd/types/time_spec.hpp> %include <uhd/types/clock_config.hpp> +GR_SWIG_BLOCK_MAGIC(uhd,mimo_source) +%include <uhd_mimo_source.h> + +GR_SWIG_BLOCK_MAGIC(uhd,mimo_sink) +%include <uhd_mimo_sink.h> + GR_SWIG_BLOCK_MAGIC(uhd,simple_source) %include <uhd_simple_source.h> |