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

« back to all changes in this revision

Viewing changes to grc/blocks/blks2_nbfm_tx.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
##NBFM Transmit
 
5
###################################################
 
6
 -->
 
7
<block>
 
8
        <name>NBFM Transmit</name>
 
9
        <key>blks2_nbfm_tx</key>
 
10
        <import>from gnuradio import blks2</import>
 
11
        <make>blks2.nbfm_tx(
 
12
        audio_rate=$audio_rate,
 
13
        quad_rate=$quad_rate,
 
14
        tau=$tau,
 
15
        max_dev=$max_dev,
 
16
)</make>
 
17
        <param>
 
18
                <name>Audio Rate</name>
 
19
                <key>audio_rate</key>
 
20
                <type>int</type>
 
21
        </param>
 
22
        <param>
 
23
                <name>Quadrature Rate</name>
 
24
                <key>quad_rate</key>
 
25
                <type>int</type>
 
26
        </param>
 
27
        <param>
 
28
                <name>Tau</name>
 
29
                <key>tau</key>
 
30
                <value>75e-6</value>
 
31
                <type>real</type>
 
32
        </param>
 
33
        <param>
 
34
                <name>Max Deviation</name>
 
35
                <key>max_dev</key>
 
36
                <value>5e3</value>
 
37
                <type>real</type>
 
38
        </param>
 
39
        <check>$quad_rate%$audio_rate == 0</check>
 
40
        <sink>
 
41
                <name>in</name>
 
42
                <type>float</type>
 
43
        </sink>
 
44
        <source>
 
45
                <name>out</name>
 
46
                <type>complex</type>
 
47
        </source>
 
48
</block>