diff options
author | Andrej Rode <mail@andrejro.de> | 2019-05-14 18:13:32 +0200 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-05-17 20:05:23 -0700 |
commit | 96b1eec42dcfade96d15320b44b2936561f9fb9c (patch) | |
tree | 9f731b64f1bfb578a9798a0c598981f949197839 /gr-blocks/grc | |
parent | d66bc948823e32e8651667748702415c570af119 (diff) |
blocks: add byte option to add_const_v in GRC
The previous GRC yml description did not contain an entry for operation on
bytes.
Closes #2461, Closes #2354
Diffstat (limited to 'gr-blocks/grc')
-rw-r--r-- | gr-blocks/grc/blocks_add_const_vxx.block.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/grc/blocks_add_const_vxx.block.yml b/gr-blocks/grc/blocks_add_const_vxx.block.yml index b42ea616d0..c60e657696 100644 --- a/gr-blocks/grc/blocks_add_const_vxx.block.yml +++ b/gr-blocks/grc/blocks_add_const_vxx.block.yml @@ -6,11 +6,11 @@ parameters: - id: type label: IO Type dtype: enum - options: [complex, float, int, short] + options: [complex, float, int, short, byte] option_attributes: - vconst_type: [complex_vector, real_vector, int_vector, int_vector] - const_type: [complex, real, int, int] - fcn: [cc, ff, ii, ss] + vconst_type: [complex_vector, real_vector, int_vector, int_vector, int_vector] + const_type: [complex, real, int, int, int] + fcn: [cc, ff, ii, ss, bb] hide: part - id: const label: Constant |