summaryrefslogtreecommitdiff
path: root/gr-digital/grc/digital_glfsr_source_x.xml
diff options
context:
space:
mode:
authorJohnathan Corgan2012-05-02 14:37:55 -0700
committerJohnathan Corgan2012-05-02 14:37:55 -0700
commited8fbd7733d54b80c2bd13351500d0c2da187caf (patch)
tree7fab347708fd83bbecf58cf4703db5d29467da05 /gr-digital/grc/digital_glfsr_source_x.xml
parent884c23efe954f34d15f7211c360e1475c65db9db (diff)
parent7fde258b1478c01cbe7559e7b2cd0f34e36cbe33 (diff)
downloadgnuradio-ed8fbd7733d54b80c2bd13351500d0c2da187caf.tar.gz
gnuradio-ed8fbd7733d54b80c2bd13351500d0c2da187caf.tar.bz2
gnuradio-ed8fbd7733d54b80c2bd13351500d0c2da187caf.zip
Merge branch 'digital_moves'
Diffstat (limited to 'gr-digital/grc/digital_glfsr_source_x.xml')
-rw-r--r--gr-digital/grc/digital_glfsr_source_x.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/gr-digital/grc/digital_glfsr_source_x.xml b/gr-digital/grc/digital_glfsr_source_x.xml
new file mode 100644
index 000000000..654dfa71c
--- /dev/null
+++ b/gr-digital/grc/digital_glfsr_source_x.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0"?>
+<!--
+###################################################
+##GLFSR Source
+###################################################
+ -->
+<block>
+ <name>GLFSR Source</name>
+ <key>digital_glfsr_source_x</key>
+ <import>from gnuradio import digital</import>
+ <make>digital.glfsr_source_$(type.fcn)($degree, $repeat, $mask, $seed)</make>
+ <param>
+ <name>Type</name>
+ <key>type</key>
+ <type>enum</type>
+ <option>
+ <name>Float</name>
+ <key>float</key>
+ <opt>fcn:f</opt>
+ </option>
+ <option>
+ <name>Byte</name>
+ <key>byte</key>
+ <opt>fcn:b</opt>
+ </option>
+ </param>
+ <param>
+ <name>Degree</name>
+ <key>degree</key>
+ <type>int</type>
+ </param>
+ <param>
+ <name>Repeat</name>
+ <key>repeat</key>
+ <type>enum</type>
+ <option>
+ <name>Yes</name>
+ <key>True</key>
+ </option>
+ <option>
+ <name>No</name>
+ <key>False</key>
+ </option>
+ </param>
+ <param>
+ <name>Mask</name>
+ <key>mask</key>
+ <value>0</value>
+ <type>int</type>
+ </param>
+ <param>
+ <name>Seed</name>
+ <key>seed</key>
+ <value>1</value>
+ <type>int</type>
+ </param>
+ <source>
+ <name>out</name>
+ <type>$type</type>
+ </source>
+</block>