another distcheck fix
[debian/gnuradio] / grc / data / grc_gnuradio / blocks / gr_moving_average_xx.xml
1 <?xml version="1.0"?>
2 <!--
3 ###################################################
4 ##Moving Average
5 ###################################################
6  -->
7 <block>
8         <name>Moving Average</name>
9         <key>gr_moving_average_xx</key>
10         <import>from gnuradio import gr</import>
11         <make>gr.moving_average_$(type.fcn)($length, $scale, $max_iter)</make>
12         <param>
13                 <name>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                         <opt>scale:complex</opt>
21                 </option>
22                 <option>
23                         <name>Float</name>
24                         <key>float</key>
25                         <opt>fcn:ff</opt>
26                         <opt>scale:real</opt>
27                 </option>
28                 <option>
29                         <name>Int</name>
30                         <key>int</key>
31                         <opt>fcn:ii</opt>
32                         <opt>scale:int</opt>
33                 </option>
34                 <option>
35                         <name>Short</name>
36                         <key>short</key>
37                         <opt>fcn:ss</opt>
38                         <opt>scale:int</opt>
39                 </option>
40         </param>
41         <param>
42                 <name>Length</name>
43                 <key>length</key>
44                 <value>1000</value>
45                 <type>int</type>
46         </param>
47         <param>
48                 <name>Scale</name>
49                 <key>scale</key>
50                 <value>1</value>
51                 <type>$type.scale</type>
52         </param>
53         <param>
54                 <name>Max Iter</name>
55                 <key>max_iter</key>
56                 <value>4000</value>
57                 <type>int</type>
58         </param>
59         <sink>
60                 <name>in</name>
61                 <type>$type</type>
62         </sink>
63         <source>
64                 <name>out</name>
65                 <type>$type</type>
66         </source>
67 </block>