summaryrefslogtreecommitdiff
path: root/gr-blocks/grc
diff options
context:
space:
mode:
authorJohannes Demel <demel@uni-bremen.de>2019-01-19 17:03:10 +0100
committerMartin Braun <martin.braun@ettus.com>2019-01-21 10:50:11 -0800
commita8f83c9c289ecbaa90451c72750affba2f446901 (patch)
tree9f33d51e8fb0c42c268432838c20a5aa2cbc4c8e /gr-blocks/grc
parent68aef5dd87738e0c2ebc97a7df024bd4fc06a08e (diff)
blocks: Convert GRC examples to YAML format
This commit converts the examples in `gr-blocks` to the new YAML format. This conversion is tracked in #2285. The assertion in `grc/blocks_multiply_matrix_xx.block.yml` to check if the selected tag propagation policy and the given matrix are compatible is disabled. This might be an issue with `dtype: enum` and its resolution in Mako.
Diffstat (limited to 'gr-blocks/grc')
-rw-r--r--gr-blocks/grc/blocks_multiply_matrix_xx.block.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/grc/blocks_multiply_matrix_xx.block.yml b/gr-blocks/grc/blocks_multiply_matrix_xx.block.yml
index df67194777..4eca9a3dc1 100644
--- a/gr-blocks/grc/blocks_multiply_matrix_xx.block.yml
+++ b/gr-blocks/grc/blocks_multiply_matrix_xx.block.yml
@@ -37,7 +37,7 @@ outputs:
asserts:
- ${ len(A) > 0 }
- ${ len(A[0]) > 0 }
-- ${ tag_propagation_policy != gr.TPP_ONE_TO_ONE or (len(A) == len(A[0])) }
+#- ${ tag_propagation_policy != gr.TPP_ONE_TO_ONE or len(A) == len(A[0]) }
templates:
imports: from gnuradio import blocks