diff options
author | Josh Blum | 2010-03-02 14:43:20 -0800 |
---|---|---|
committer | Josh Blum | 2010-03-02 14:43:20 -0800 |
commit | 6d71414a0a467dc37fc903b327be22f8d0ddeade (patch) | |
tree | d74618b160f138e4b022ea549896c54a00eef6c8 /gr-uhd/swig | |
parent | c85606eaaf5a73387d4423bdeb2f63483394137e (diff) | |
download | gnuradio-6d71414a0a467dc37fc903b327be22f8d0ddeade.tar.gz gnuradio-6d71414a0a467dc37fc903b327be22f8d0ddeade.tar.bz2 gnuradio-6d71414a0a467dc37fc903b327be22f8d0ddeade.zip |
Added the uhd simple sink lib block, swig wrapper, grc wrapper.
It seems to work, but still getting the kinks out of tx->usrp2
Diffstat (limited to 'gr-uhd/swig')
-rw-r--r-- | gr-uhd/swig/uhd_swig.i | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gr-uhd/swig/uhd_swig.i b/gr-uhd/swig/uhd_swig.i index e20d22a26..06a1c88ff 100644 --- a/gr-uhd/swig/uhd_swig.i +++ b/gr-uhd/swig/uhd_swig.i @@ -24,8 +24,11 @@ %{ #include <uhd_simple_source.h> +#include <uhd_simple_sink.h> %} GR_SWIG_BLOCK_MAGIC(uhd,simple_source) - %include <uhd_simple_source.h> + +GR_SWIG_BLOCK_MAGIC(uhd,simple_sink) +%include <uhd_simple_sink.h> |