diff options
Diffstat (limited to 'gr-blocks/grc/blocks_multiply_conjugate_cc.block.yml')
-rw-r--r-- | gr-blocks/grc/blocks_multiply_conjugate_cc.block.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gr-blocks/grc/blocks_multiply_conjugate_cc.block.yml b/gr-blocks/grc/blocks_multiply_conjugate_cc.block.yml new file mode 100644 index 0000000000..aceabc643e --- /dev/null +++ b/gr-blocks/grc/blocks_multiply_conjugate_cc.block.yml @@ -0,0 +1,33 @@ +id: blocks_multiply_conjugate_cc +label: Multiply Conjugate + +parameters: +- id: vlen + label: Vec Length + dtype: int + default: '1' + hide: ${ 'part' if vlen == 1 else 'none' } + +inputs: +- label: in0 + domain: stream + dtype: complex + vlen: ${ vlen } +- label: in1 + domain: stream + dtype: complex + vlen: ${ vlen } + +outputs: +- domain: stream + dtype: complex + vlen: ${ vlen } + +asserts: +- ${ vlen > 0 } + +templates: + imports: from gnuradio import blocks + make: blocks.multiply_conjugate_cc(${vlen}) + +file_format: 1 |