~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to grc/blocks/gr_filter_delay_fc.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
##Filter Delay
 
5
###################################################
 
6
 -->
 
7
<block>
 
8
        <name>Filter Delay</name>
 
9
        <key>gr_filter_delay_fc</key>
 
10
        <import>from gnuradio import gr</import>
 
11
        <import>from gnuradio.gr import firdes</import>
 
12
        <make>gr.filter_delay_fc($taps)</make>
 
13
        <param>
 
14
                <name>Taps</name>
 
15
                <key>taps</key>
 
16
                <type>real_vector</type>
 
17
        </param>
 
18
        <sink>
 
19
                <name>in</name>
 
20
                <type>float</type>
 
21
        </sink>
 
22
        <sink>
 
23
                <name>in</name>
 
24
                <type>float</type>
 
25
                <optional>1</optional>
 
26
        </sink>
 
27
        <source>
 
28
                <name>out</name>
 
29
                <type>complex</type>
 
30
        </source>
 
31
</block>