blob: e57666873b4eafcc0a425c02454f2c7acb03165e (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
<?xml version="1.0"?>
<!--
###################################################
##AGC2
###################################################
-->
<block>
<name>AGC2</name>
<key>analog_agc2_xx</key>
<import>from gnuradio import analog</import>
<make>analog.agc2_$(type.fcn)($attack_rate, $decay_rate, $reference, $gain, $max_gain)</make>
<callback>set_attack_rate($attack_rate)</callback>
<callback>set_decay_rate($decay_rate)</callback>
<callback>set_reference($reference)</callback>
<callback>set_gain($gain)</callback>
<callback>set_max_gain($max_gain)</callback>
<param>
<name>Type</name>
<key>type</key>
<type>enum</type>
<option>
<name>Complex</name>
<key>complex</key>
<opt>fcn:cc</opt>
</option>
<option>
<name>Float</name>
<key>float</key>
<opt>fcn:ff</opt>
</option>
</param>
<param>
<name>Attack Rate</name>
<key>attack_rate</key>
<value>1e-1</value>
<type>real</type>
</param>
<param>
<name>Decay Rate</name>
<key>decay_rate</key>
<value>1e-2</value>
<type>real</type>
</param>
<param>
<name>Reference</name>
<key>reference</key>
<value>1.0</value>
<type>real</type>
</param>
<param>
<name>Gain</name>
<key>gain</key>
<value>1.0</value>
<type>real</type>
</param>
<param>
<name>Max Gain</name>
<key>max_gain</key>
<value>0.0</value>
<type>real</type>
</param>
<sink>
<name>in</name>
<type>$type</type>
</sink>
<source>
<name>out</name>
<type>$type</type>
</source>
</block>
|