summaryrefslogtreecommitdiff
path: root/gr-blocks/grc/blocks_deinterleave.block.yml
Commit message (Collapse)AuthorAgeFilesLines
* gr-blocks: Standardize Vector parameter nameSolomon Tan2021-05-191-1/+1
| | | | | | | | Addresses point 1 of Issue #4615. Replaces all label instances of "Vec Length" to "Vector Length". Also replaces "Vec Rate" to "Vector Rate" for standardization. Signed-off-by: Solomon Tan <solomonbstoner@yahoo.com.au>
* digital/blocks: Remove broken/unnecessary C++ sizeof translationTerry May2020-01-021-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | Several components use the following translation in cpp_templates: ``` translations: gr.sizeof_: 'sizeof(' ``` The problem is the generated code is missing a closing parens i.e.: this->blocks_delay_0 = blocks::delay::make(sizeof(gr_complex*1, 0); This could be fixed by adding a closing parens in the make template, but it looks awkward to have an unmatched closing parens. And only a few blocks currently have this closing parens added. Most of them produce erroneous code like that above. However, this sizeof translation is not even needed in the YAML file because cpp_top_block.py explicitly adds the proper sizeof translation. ``` translations.update( {r"gr\.sizeof_([\w_]+)": r"sizeof(\1)"} ) ``` So removing this translation all together produces correct code for blocks that use gr.sizeof_X.
* grc: add flags as a listAndrej Rode2018-12-181-1/+1
|
* Added C++ support to gr-analog, gr-blocks and grcHåkon Vågsether2018-12-181-0/+8
|
* Added auto-generated YAML blocksHåkon Vågsether2017-10-101-0/+48