~vcs-imports-ii/gnuradio/master

« back to all changes in this revision

Viewing changes to gr-blocks/grc/blocks_integrate_xx.xml

  • Committer: Johnathan Corgan
  • Date: 2015-02-23 12:16:37 UTC
  • mfrom: (3851.1.1)
  • Revision ID: git-v1:8ecfd13af0f55818d178fde17182de12b60ba4f1
Merge remote-tracking branch 'pinkavaj/vect_integrate-00'

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
        <name>Integrate</name>
9
9
        <key>blocks_integrate_xx</key>
10
10
        <import>from gnuradio import blocks</import>
11
 
        <make>blocks.integrate_$(type.fcn)($decim)</make>
 
11
        <make>blocks.integrate_$(type.fcn)($decim, $vlen)</make>
12
12
        <param>
13
13
                <name>IO Type</name>
14
14
                <key>type</key>
39
39
                <key>decim</key>
40
40
                <type>int</type>
41
41
        </param>
 
42
        <param>
 
43
                <name>Vec Length</name>
 
44
                <key>vlen</key>
 
45
                <value>1</value>
 
46
                <type>int</type>
 
47
        </param>
42
48
        <sink>
43
49
                <name>in</name>
44
50
                <type>$type</type>
 
51
                <vlen>$vlen</vlen>
45
52
        </sink>
46
53
        <source>
47
54
                <name>out</name>
48
55
                <type>$type</type>
 
56
                <vlen>$vlen</vlen>
49
57
        </source>
50
58
</block>