diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-10-23 16:37:41 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-10-29 12:04:09 -0400 |
commit | 1cbeec5083bbfdd281b30271e874f0849b0a9be0 (patch) | |
tree | 0301fb3e4547d7f571ac9c7ffc423771e8c4f540 /gr-blocks/grc | |
parent | 32bcd3dcbf9ef398d834c664e7e6e5f6cb5124d8 (diff) |
blocks: adding ability to set a key filter in tag_debug block.
Diffstat (limited to 'gr-blocks/grc')
-rw-r--r-- | gr-blocks/grc/blocks_tag_debug.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gr-blocks/grc/blocks_tag_debug.xml b/gr-blocks/grc/blocks_tag_debug.xml index bf2b4a7ec0..03dd147cbe 100644 --- a/gr-blocks/grc/blocks_tag_debug.xml +++ b/gr-blocks/grc/blocks_tag_debug.xml @@ -8,7 +8,7 @@ <name>Tag Debug</name> <key>blocks_tag_debug</key> <import>from gnuradio import blocks</import> - <make>blocks.tag_debug($type.size*$vlen, $name); self.$(id).set_display($display)</make> + <make>blocks.tag_debug($type.size*$vlen, $name, $filter); self.$(id).set_display($display)</make> <callback>set_display($display)</callback> <param> <name>Input Type</name> @@ -46,6 +46,12 @@ <type>string</type> </param> <param> + <name>Key Filter</name> + <key>filter</key> + <value>""</value> + <type>string</type> + </param> + <param> <name>Num Inputs</name> <key>num_inputs</key> <value>1</value> |