blob: 8bc6cc1c31588bc4a7d87e276d79021d5d74dcef (
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
|
id: analog_am_demod_cf
label: AM Demod
parameters:
- id: chan_rate
label: Channel Rate
dtype: real
- id: audio_decim
label: Audio Decimation
dtype: int
- id: audio_pass
label: Audio Pass
dtype: real
default: '5000'
- id: audio_stop
label: Audio Stop
dtype: real
default: '5500'
inputs:
- domain: stream
dtype: complex
outputs:
- domain: stream
dtype: float
templates:
imports: from gnuradio import analog
make: "analog.am_demod_cf(\n\tchannel_rate=${chan_rate},\n\taudio_decim=${audio_decim},\n\
\taudio_pass=${audio_pass},\n\taudio_stop=${audio_stop},\n)"
file_format: 1
|