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

« back to all changes in this revision

Viewing changes to grc/blocks/gr_cma_equalizer_cc.xml

  • Committer: Package Import Robot
  • Author(s): A. Maitland Bottoms
  • Date: 2012-02-26 21:26:16 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120226212616-vsfkbi1158xshdql
Tags: 3.5.1-1
* new upstream version, re-packaged from scratch with modern tools
    closes: #642716, #645332, #394849, #616832, #590048, #642580,
    #647018, #557050, #559640, #631863
* CMake build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<!--
3
 
###################################################
4
 
##CMA Equalizer
5
 
###################################################
6
 
 -->
7
 
<block>
8
 
        <name>CMA Equalizer</name>
9
 
        <key>gr_cma_equalizer_cc</key>
10
 
        <import>from gnuradio import gr</import>
11
 
        <make>gr.cma_equalizer_cc($num_taps, $modulus, $mu)</make>
12
 
        <param>
13
 
                <name>Num Taps</name>
14
 
                <key>num_taps</key>
15
 
                <value>64</value>
16
 
                <type>int</type>
17
 
        </param>
18
 
        <param>
19
 
                <name>Modulus</name>
20
 
                <key>modulus</key>
21
 
                <type>real</type>
22
 
        </param>
23
 
        <param>
24
 
                <name>Mu</name>
25
 
                <key>mu</key>
26
 
                <type>real</type>
27
 
        </param>
28
 
        <sink>
29
 
                <name>in</name>
30
 
                <type>complex</type>
31
 
        </sink>
32
 
        <source>
33
 
                <name>out</name>
34
 
                <type>complex</type>
35
 
        </source>
36
 
</block>