diff options
author | Håkon Vågsether <haakonsv@gmail.com> | 2017-09-24 12:16:22 +0200 |
---|---|---|
committer | Håkon Vågsether <haakonsv@gmail.com> | 2017-10-10 10:49:36 +0200 |
commit | baf7eaf8f29d5a490f2580917362cf5b3db47281 (patch) | |
tree | 7afab4ee2dfa6439ecf95d47aa68996020ea04c5 /gr-digital/grc/digital_probe_mpsk_snr_est_c.block.yml | |
parent | 6fa9d33246251f44a0e78682e50e9a1cb0b03171 (diff) |
Added auto-generated YAML blocks
Diffstat (limited to 'gr-digital/grc/digital_probe_mpsk_snr_est_c.block.yml')
-rw-r--r-- | gr-digital/grc/digital_probe_mpsk_snr_est_c.block.yml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gr-digital/grc/digital_probe_mpsk_snr_est_c.block.yml b/gr-digital/grc/digital_probe_mpsk_snr_est_c.block.yml new file mode 100644 index 0000000000..68e29c1e76 --- /dev/null +++ b/gr-digital/grc/digital_probe_mpsk_snr_est_c.block.yml @@ -0,0 +1,42 @@ +id: digital_probe_mpsk_snr_est_c +label: MPSK SNR Estimator Probe + +parameters: +- id: type + label: Type + dtype: enum + options: ['0', '1', '2', '3'] + option_labels: [Simple, Skewness, 2nd and 4th Moment, SVR] +- id: msg_nsamples + label: Samples between SNR messages + dtype: int + default: '10000' +- id: alpha + label: Filter Alpha + dtype: real + default: '0.001' + +inputs: +- domain: stream + dtype: complex + +outputs: +- domain: message + id: snr + optional: true +- domain: message + id: signal + optional: true +- domain: message + id: noise + optional: true + +templates: + imports: from gnuradio import digital + make: digital.probe_mpsk_snr_est_c(${type}, ${msg_nsamples}, ${alpha}) + callbacks: + - set_type(${type}) + - set_msg_nsample(${msg_nsamples}) + - set_alpha(${alpha}) + +file_format: 1 |