diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-07-16 14:55:28 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-16 15:03:10 -0700 |
commit | af206bb5fc1a255b48dbab344a2bba7581535cb0 (patch) | |
tree | 199adbce01307e132d2ab30184404ad2eb118a05 /gr-blocks/swig | |
parent | f0198da0bbf6af214b0d629cb77b8539ac42e02a (diff) |
controlport: Added probes for byte, short, and int data types
(ctrlport_probe2_x).
Had to add some more plumbing to ControlPort to handle different data
types to support the new probes.
TODO: in 3.8, we will remove ctrlport_probe_c and make a single GRC
file for all data types and remove blocks_ctrlport_probe2_c.xml.
Diffstat (limited to 'gr-blocks/swig')
-rw-r--r-- | gr-blocks/swig/blocks_swig0.i | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gr-blocks/swig/blocks_swig0.i b/gr-blocks/swig/blocks_swig0.i index ec5b75b0d1..28e14fea35 100644 --- a/gr-blocks/swig/blocks_swig0.i +++ b/gr-blocks/swig/blocks_swig0.i @@ -103,12 +103,24 @@ GR_SWIG_BLOCK_MAGIC2(blocks, null_source); %{ #include "gnuradio/blocks/ctrlport_probe_c.h" #include "gnuradio/blocks/ctrlport_probe2_c.h" +#include "gnuradio/blocks/ctrlport_probe2_f.h" +#include "gnuradio/blocks/ctrlport_probe2_s.h" +#include "gnuradio/blocks/ctrlport_probe2_i.h" +#include "gnuradio/blocks/ctrlport_probe2_b.h" %} %include "gnuradio/blocks/ctrlport_probe_c.h" %include "gnuradio/blocks/ctrlport_probe2_c.h" +%include "gnuradio/blocks/ctrlport_probe2_f.h" +%include "gnuradio/blocks/ctrlport_probe2_s.h" +%include "gnuradio/blocks/ctrlport_probe2_i.h" +%include "gnuradio/blocks/ctrlport_probe2_b.h" GR_SWIG_BLOCK_MAGIC2(blocks, ctrlport_probe_c); GR_SWIG_BLOCK_MAGIC2(blocks, ctrlport_probe2_c); +GR_SWIG_BLOCK_MAGIC2(blocks, ctrlport_probe2_f); +GR_SWIG_BLOCK_MAGIC2(blocks, ctrlport_probe2_s); +GR_SWIG_BLOCK_MAGIC2(blocks, ctrlport_probe2_i); +GR_SWIG_BLOCK_MAGIC2(blocks, ctrlport_probe2_b); #endif /* GR_CTRLPORT */ |