blob: 79ade4d0af9c896c9a838082d7fb9c489a8cd32b (
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
|
id: blocks_vco_f
label: VCO
parameters:
- id: samp_rate
label: Sample Rate
dtype: real
- id: sensitivity
label: Sensitivity
dtype: real
- id: amplitude
label: Amplitude
dtype: real
inputs:
- domain: stream
dtype: float
outputs:
- domain: stream
dtype: float
templates:
imports: from gnuradio import blocks
make: blocks.vco_f(${samp_rate}, ${sensitivity}, ${amplitude})
file_format: 1
|