another distcheck fix
[debian/gnuradio] / grc / data / grc_gnuradio / blocks / gr_threshold_ff.xml
1 <?xml version="1.0"?>
2 <!--
3 ###################################################
4 ##Threshold
5 ###################################################
6  -->
7 <block>
8         <name>Threshold</name>
9         <key>gr_threshold_ff</key>
10         <import>from gnuradio import gr</import>
11         <make>gr.threshold_ff($low, $high, $init)</make>
12         <param>
13                 <name>Low</name>
14                 <key>low</key>
15                 <value>-100</value>
16                 <type>real</type>
17         </param>
18         <param>
19                 <name>High</name>
20                 <key>high</key>
21                 <value>100</value>
22                 <type>real</type>
23         </param>
24         <param>
25                 <name>Initial State</name>
26                 <key>init</key>
27                 <value>0</value>
28                 <type>real</type>
29         </param>
30         <sink>
31                 <name>in</name>
32                 <type>float</type>
33         </sink>
34         <source>
35                 <name>out</name>
36                 <type>float</type>
37         </source>
38 </block>