blob: fd49a654a8319ee19bb75c48971075a6291f05ef (
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
|
id: analog_feedforward_agc_cc
label: Feed Forward AGC
parameters:
- id: num_samples
label: Num Samples
dtype: int
default: '1024'
- id: reference
label: Reference
dtype: real
default: '1.0'
inputs:
- domain: stream
dtype: complex
outputs:
- domain: stream
dtype: complex
templates:
imports: from gnuradio import analog
make: analog.feedforward_agc_cc(${num_samples}, ${reference})
file_format: 1
|