summaryrefslogtreecommitdiff
path: root/gr-blocks/grc
diff options
context:
space:
mode:
authorTim O'Shea <tim.oshea753@gmail.com>2014-05-05 23:16:55 -0400
committerTim O'Shea <tim.oshea753@gmail.com>2014-05-05 23:17:35 -0400
commit8c97b7c379952c010c84cf8ae8a97fbfaac83bfd (patch)
tree0b3e4abe3249b337d0b65be996577f47ce5bc86b /gr-blocks/grc
parent58d003bcdd0a4982941ccc700a6158aaa25a02d2 (diff)
blocks: adding pdu_remove block
Diffstat (limited to 'gr-blocks/grc')
-rw-r--r--gr-blocks/grc/blocks_pdu_remove.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/gr-blocks/grc/blocks_pdu_remove.xml b/gr-blocks/grc/blocks_pdu_remove.xml
new file mode 100644
index 0000000000..ad99445e1d
--- /dev/null
+++ b/gr-blocks/grc/blocks_pdu_remove.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+###################################################
+## PDU Remove
+###################################################
+ -->
+<block>
+ <name>PDU Remove</name>
+ <key>blocks_pdu_remove</key>
+ <import>from gnuradio import blocks</import>
+ <import>import pmt</import>
+ <make>blocks.pdu_remove($k)</make>
+ <param>
+ <name>Key</name>
+ <key>k</key>
+ <value>pmt.intern("key")</value>
+ <type>raw</type>
+ </param>
+ <sink>
+ <name>pdus</name>
+ <type>message</type>
+ <optional>1</optional>
+ </sink>
+ <source>
+ <name>pdus</name>
+ <type>message</type>
+ <optional>1</optional>
+ </source>
+</block>