blob: 2771350cfdf80a21fe3458d48c494e07a73c7cbc (
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
|
<?xml version="1.0"?>
<!--
###################################################
##WBFM Receive PLL
###################################################
-->
<block>
<name>WBFM Receive PLL</name>
<key>blks2_wfm_rcv_pll</key>
<import>from gnuradio import blks2</import>
<make>blks2.wfm_rcv_pll(
demod_rate=$quad_rate,
audio_decimation=$audio_decimation,
)</make>
<param>
<name>Quadrature Rate</name>
<key>quad_rate</key>
<type>real</type>
</param>
<param>
<name>Audio Decimation</name>
<key>audio_decimation</key>
<type>int</type>
</param>
<sink>
<name>in</name>
<type>complex</type>
</sink>
<source>
<name>Lout</name>
<type>float</type>
</source>
<source>
<name>Rout</name>
<type>float</type>
</source>
</block>
|