summaryrefslogtreecommitdiff
path: root/gr-blocks/grc
diff options
context:
space:
mode:
authorJiří Pinkava <j-pi@seznam.cz>2015-02-23 01:44:43 +0100
committerJiří Pinkava <j-pi@seznam.cz>2015-02-23 04:24:55 +0100
commitf426108cf0d7440dc1fbbaa33b83c9e6488a91d0 (patch)
treef7b6e80d38d3e0fe9b2f4a4c58d3657c99141e56 /gr-blocks/grc
parente03b287c8641f2b7d5ed42e0442d285dd03e5466 (diff)
blocks: integration supports vector input
Diffstat (limited to 'gr-blocks/grc')
-rw-r--r--gr-blocks/grc/blocks_integrate_xx.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/gr-blocks/grc/blocks_integrate_xx.xml b/gr-blocks/grc/blocks_integrate_xx.xml
index 13c2ec3c85..8f47b94997 100644
--- a/gr-blocks/grc/blocks_integrate_xx.xml
+++ b/gr-blocks/grc/blocks_integrate_xx.xml
@@ -8,7 +8,7 @@
<name>Integrate</name>
<key>blocks_integrate_xx</key>
<import>from gnuradio import blocks</import>
- <make>blocks.integrate_$(type.fcn)($decim)</make>
+ <make>blocks.integrate_$(type.fcn)($decim, $vlen)</make>
<param>
<name>IO Type</name>
<key>type</key>
@@ -39,12 +39,20 @@
<key>decim</key>
<type>int</type>
</param>
+ <param>
+ <name>Vec Length</name>
+ <key>vlen</key>
+ <value>1</value>
+ <type>int</type>
+ </param>
<sink>
<name>in</name>
<type>$type</type>
+ <vlen>$vlen</vlen>
</sink>
<source>
<name>out</name>
<type>$type</type>
+ <vlen>$vlen</vlen>
</source>
</block>