diff options
Diffstat (limited to 'gr-channels/grc/channels_conj_fs_iqcorr.block.yml')
-rw-r--r-- | gr-channels/grc/channels_conj_fs_iqcorr.block.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gr-channels/grc/channels_conj_fs_iqcorr.block.yml b/gr-channels/grc/channels_conj_fs_iqcorr.block.yml new file mode 100644 index 0000000000..66f9e1d3a5 --- /dev/null +++ b/gr-channels/grc/channels_conj_fs_iqcorr.block.yml @@ -0,0 +1,29 @@ +id: channels_conj_fs_iqcorr +label: Freq. Selective IQ Correction + +parameters: +- id: delay + label: Delay + dtype: int + default: '0' +- id: taps + label: Taps + dtype: complex_vector + default: '0' + +inputs: +- domain: stream + dtype: complex + +outputs: +- domain: stream + dtype: complex + +templates: + imports: from gnuradio import channels + make: channels.conj_fs_iqcorr(${delay}, ${taps}) + callbacks: + - set_delay(${delay}) + - set_taps(${taps}) + +file_format: 1 |