From 93a4677fa127317910ec5868cc5e22a52d4d7240 Mon Sep 17 00:00:00 2001
From: Tom Rondeau
Date: Fri, 22 Jun 2012 12:30:40 -0400
Subject: core: adds a tag debug sink to display all tags coming into it.
This block is meant to help debug applications that use stream tags.
---
grc/blocks/block_tree.xml | 1 +
grc/blocks/gr_tag_debug.xml | 82 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 83 insertions(+)
create mode 100644 grc/blocks/gr_tag_debug.xml
(limited to 'grc')
diff --git a/grc/blocks/block_tree.xml b/grc/blocks/block_tree.xml
index 0b0b6854e..f94bd30bd 100644
--- a/grc/blocks/block_tree.xml
+++ b/grc/blocks/block_tree.xml
@@ -34,6 +34,7 @@
gr_message_sink
pad_sink
virtual_sink
+ gr_tag_debug
Operators
diff --git a/grc/blocks/gr_tag_debug.xml b/grc/blocks/gr_tag_debug.xml
new file mode 100644
index 000000000..4af7729be
--- /dev/null
+++ b/grc/blocks/gr_tag_debug.xml
@@ -0,0 +1,82 @@
+
+
+
+ Tag Debug
+ gr_tag_debug
+ from gnuradio import gr
+ gr.tag_debug($type.size*$vlen, $name)
+ set_display($display)
+
+ Input Type
+ type
+ enum
+
+
+
+
+
+
+
+ Name
+ name
+ string
+
+
+ Num Inputs
+ num_inputs
+ 1
+ int
+
+
+ Vec Length
+ vlen
+ 1
+ int
+
+
+ Display
+ display
+ True
+ bool
+
+
+
+ $num_inputs >= 1
+ $vlen > 0
+
+ in
+ $type
+ $vlen
+ $num_inputs
+
+
--
cgit