diff options
Diffstat (limited to 'gr-analog/grc/analog_noise_source_x.block.yml')
-rw-r--r-- | gr-analog/grc/analog_noise_source_x.block.yml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gr-analog/grc/analog_noise_source_x.block.yml b/gr-analog/grc/analog_noise_source_x.block.yml new file mode 100644 index 0000000000..bb3f67209e --- /dev/null +++ b/gr-analog/grc/analog_noise_source_x.block.yml @@ -0,0 +1,38 @@ +id: analog_noise_source_x +label: Noise Source + +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}) + +file_format: 1 |