blob: 5c0727f5f881ce382647a77f0f65db0f2c54af25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?xml version="1.0"?>
<!--
###################################################
##Simple Squelch
###################################################
-->
<block>
<name>Simple Squelch</name>
<key>gr_simple_squelch_cc</key>
<import>from gnuradio import gr</import>
<make>gr.simple_squelch_cc($threshold, $alpha)</make>
<callback>set_threshold($threshold)</callback>
<callback>set_alpha($alpha)</callback>
<param>
<name>Threshold (dB)</name>
<key>threshold</key>
<type>real</type>
</param>
<param>
<name>Alpha</name>
<key>alpha</key>
<type>real</type>
</param>
<sink>
<name>in</name>
<type>complex</type>
</sink>
<source>
<name>out</name>
<type>complex</type>
</source>
</block>
|