blob: b9fe199dd24d67610a944ef3eed17e22261e7b4d (
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
|
id: analog_pll_freqdet_cf
label: PLL Freq Det
parameters:
- id: w
label: Loop Bandwidth
dtype: real
- id: max_freq
label: Max Freq
dtype: real
- id: min_freq
label: Min Freq
dtype: real
inputs:
- domain: stream
dtype: complex
outputs:
- domain: stream
dtype: float
templates:
imports: from gnuradio import analog
make: analog.pll_freqdet_cf(${w}, ${max_freq}, ${min_freq})
callbacks:
- set_loop_bandwidth(${w})
- set_max_freq(${max_freq})
- set_min_freq(${min_freq})
file_format: 1
|