blob: e5e3d76ccc6a4e10fcaedeb7da921ed8e50f8ea5 (
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
|
id: analog_wfm_rcv_pll
label: WBFM Receive PLL
parameters:
- id: quad_rate
label: Quadrature Rate
dtype: real
- id: audio_decimation
label: Audio Decimation
dtype: int
inputs:
- domain: stream
dtype: complex
outputs:
- label: Lout
domain: stream
dtype: float
- label: Rout
domain: stream
dtype: float
templates:
imports: from gnuradio import analog
make: "analog.wfm_rcv_pll(\n\tdemod_rate=${quad_rate},\n\taudio_decimation=${audio_decimation},\n\
)"
file_format: 1
|