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
47
48
49
|
id: analog_noise_source_x
label: Noise Source
flags: [ python, cpp ]
parameters:
- id: type
label: Output Type
dtype: enum
options: [complex, float, int, short]
option_attributes:
fcn: [c, f, i, s]
hide: part
- id: noise_type
label: Noise Type
dtype: int
default: analog.GR_GAUSSIAN
options: [analog.GR_UNIFORM, analog.GR_GAUSSIAN, analog.GR_LAPLACIAN, analog.GR_IMPULSE]
option_labels: [Uniform, Gaussian, Laplacian, Impulse]
- id: amp
label: Amplitude
dtype: real
default: '1'
- id: seed
label: Seed
dtype: int
default: '0'
outputs:
- domain: stream
dtype: ${ type }
templates:
imports: from gnuradio import analog
make: analog.noise_source_${type.fcn}(${noise_type}, ${amp}, ${seed})
callbacks:
- set_type(${noise_type})
- set_amplitude(${amp})
cpp_templates:
includes: ['#include <gnuradio/analog/noise_source.h>']
make: 'this->${id} = analog::noise_source_${type.fcn}::make(${noise_type}, ${amp}, ${seed});'
callbacks:
- set_type(${noise_type})
- set_amplitude(${amp})
link: ['gnuradio-analog']
translations:
analog.: 'analog::'
file_format: 1
|