aboutsummaryrefslogtreecommitdiffstats
path: root/src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml
diff options
context:
space:
mode:
authorSARA <sara.halter@ost.ch>2021-11-17 19:41:49 +0100
committerSARA <sara.halter@ost.ch>2021-11-17 19:41:49 +0100
commit37a204861a1ea56f39e68c690d3a5c23d4a3c23e (patch)
tree59540172ad5cab98b41b784c3535a4593fd5de85 /src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml
parentFir filter delay python file (diff)
parentBegin working on frame syncronization (diff)
downloadFading-37a204861a1ea56f39e68c690d3a5c23d4a3c23e.tar.gz
Fading-37a204861a1ea56f39e68c690d3a5c23d4a3c23e.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml')
-rw-r--r--src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml b/src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml
new file mode 100644
index 0000000..92be2a8
--- /dev/null
+++ b/src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml
@@ -0,0 +1,45 @@
+id: fadingui_xor_frame_sync
+label: xor_frame_sync
+category: '[fadingui]'
+
+templates:
+ imports: import fadingui
+ make: fadingui.xor_frame_sync()
+
+# Make one 'parameters' list entry for every parameter you want settable from the GUI.
+# Keys include:
+# * id (makes the value accessible as \$keyname, e.g. in the make entry)
+# * label (label shown in the GUI)
+# * dtype (e.g. int, float, complex, byte, short, xxx_vector, ...)
+parameters:
+- id: ...
+ label: ...
+ dtype: ...
+- id: ...
+ label: ...
+ dtype: ...
+
+# Make one 'inputs' list entry per input and one 'outputs' list entry per output.
+# Keys include:
+# * label (an identifier for the GUI)
+# * domain (optional - stream or message. Default is stream)
+# * dtype (e.g. int, float, complex, byte, short, xxx_vector, ...)
+# * vlen (optional - data stream vector length. Default is 1)
+# * optional (optional - set to 1 for optional inputs. Default is 0)
+inputs:
+- label: ...
+ domain: ...
+ dtype: ...
+ vlen: ...
+ optional: ...
+
+outputs:
+- label: ...
+ domain: ...
+ dtype: ...
+ vlen: ...
+ optional: ...
+
+# 'file_format' specifies the version of the GRC yml format used in the file
+# and should usually not be changed.
+file_format: 1