blob: a558253a2c9bbdfe2b9b868ba52ddde7f8c7f719 (
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
|
id: analog_fm_demod_cf
label: FM Demod
parameters:
- id: chan_rate
label: Channel Rate
dtype: real
- id: audio_decim
label: Audio Decimation
dtype: int
- id: deviation
label: Deviation
dtype: real
default: '75000'
- id: audio_pass
label: Audio Pass
dtype: real
default: '15000'
- id: audio_stop
label: Audio Stop
dtype: real
default: '16000'
- id: gain
label: Gain
dtype: real
default: '1.0'
- id: tau
label: Tau
dtype: real
default: 75e-6
inputs:
- domain: stream
dtype: complex
outputs:
- domain: stream
dtype: float
templates:
imports: from gnuradio import analog
make: "analog.fm_demod_cf(\n\tchannel_rate=${chan_rate},\n\taudio_decim=${audio_decim},\n\
\tdeviation=${deviation},\n\taudio_pass=${audio_pass},\n\taudio_stop=${audio_stop},\n\
\tgain=${gain},\n\ttau=${tau},\n)"
file_format: 1
|