Imported Upstream version 3.2.2
[debian/gnuradio] / grc / blocks / gr_chunks_to_symbols.xml
diff --git a/grc/blocks/gr_chunks_to_symbols.xml b/grc/blocks/gr_chunks_to_symbols.xml
new file mode 100644 (file)
index 0000000..b54e710
--- /dev/null
@@ -0,0 +1,68 @@
+<?xml version="1.0"?>
+<!--
+###################################################
+##Chunks to Symbols
+###################################################
+ -->
+<block>
+       <name>Chunks to Symbols</name>
+       <key>gr_chunks_to_symbols_xx</key>
+       <import>from gnuradio import gr</import>
+       <make>gr.chunks_to_symbols_$(in_type.fcn)$(out_type.fcn)($symbol_table, $dimension)</make>
+       <param>
+               <name>Input Type</name>
+               <key>in_type</key>
+               <type>enum</type>
+               <option>
+                       <name>Int</name>
+                       <key>int</key>
+                       <opt>fcn:i</opt>
+               </option>
+               <option>
+                       <name>Short</name>
+                       <key>short</key>
+                       <opt>fcn:s</opt>
+               </option>
+               <option>
+                       <name>Byte</name>
+                       <key>byte</key>
+                       <opt>fcn:b</opt>
+               </option>
+       </param>
+       <param>
+               <name>Output Type</name>
+               <key>out_type</key>
+               <type>enum</type>
+               <option>
+                       <name>Complex</name>
+                       <key>complex</key>
+                       <opt>fcn:c</opt>
+                       <opt>table:complex_vector</opt>
+               </option>
+               <option>
+                       <name>Float</name>
+                       <key>float</key>
+                       <opt>fcn:f</opt>
+                       <opt>table:real_vector</opt>
+               </option>
+       </param>
+       <param>
+               <name>Symbol Table</name>
+               <key>symbol_table</key>
+               <type>$out_type.table</type>
+       </param>
+       <param>
+               <name>Dimension</name>
+               <key>dimension</key>
+               <value>2</value>
+               <type>int</type>
+       </param>
+       <sink>
+               <name>in</name>
+               <type>$in_type</type>
+       </sink>
+       <source>
+               <name>out</name>
+               <type>$out_type</type>
+       </source>
+</block>