~ubuntu-branches/ubuntu/precise/gnuradio/precise

« back to all changes in this revision

Viewing changes to grc/blocks/gr_integrate_xx.xml

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!--
 
3
###################################################
 
4
##Integrate
 
5
###################################################
 
6
 -->
 
7
<block>
 
8
        <name>Integrate</name>
 
9
        <key>gr_integrate_xx</key>
 
10
        <import>from gnuradio import gr</import>
 
11
        <make>gr.integrate_$(type.fcn)($decim)</make>
 
12
        <param>
 
13
                <name>IO Type</name>
 
14
                <key>type</key>
 
15
                <type>enum</type>
 
16
                <option>
 
17
                        <name>Complex</name>
 
18
                        <key>complex</key>
 
19
                        <opt>fcn:cc</opt>
 
20
                </option>
 
21
                <option>
 
22
                        <name>Float</name>
 
23
                        <key>float</key>
 
24
                        <opt>fcn:ff</opt>
 
25
                </option>
 
26
                <option>
 
27
                        <name>Int</name>
 
28
                        <key>int</key>
 
29
                        <opt>fcn:ii</opt>
 
30
                </option>
 
31
                <option>
 
32
                        <name>Short</name>
 
33
                        <key>short</key>
 
34
                        <opt>fcn:ss</opt>
 
35
                </option>
 
36
        </param>
 
37
        <param>
 
38
                <name>Decimation</name>
 
39
                <key>decim</key>
 
40
                <type>int</type>
 
41
        </param>
 
42
        <sink>
 
43
                <name>in</name>
 
44
                <type>$type</type>
 
45
        </sink>
 
46
        <source>
 
47
                <name>out</name>
 
48
                <type>$type</type>
 
49
        </source>
 
50
</block>