diff options
author | SARA <sara.halter@ost.ch> | 2021-11-17 19:41:49 +0100 |
---|---|---|
committer | SARA <sara.halter@ost.ch> | 2021-11-17 19:41:49 +0100 |
commit | 37a204861a1ea56f39e68c690d3a5c23d4a3c23e (patch) | |
tree | 59540172ad5cab98b41b784c3535a4593fd5de85 /src/gr-fadingui/grc | |
parent | Fir filter delay python file (diff) | |
parent | Begin working on frame syncronization (diff) | |
download | Fading-37a204861a1ea56f39e68c690d3a5c23d4a3c23e.tar.gz Fading-37a204861a1ea56f39e68c690d3a5c23d4a3c23e.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to '')
-rw-r--r-- | src/gr-fadingui/grc/CMakeLists.txt | 3 | ||||
-rw-r--r-- | src/gr-fadingui/grc/fadingui_xor_frame_sync.block.yml | 45 |
2 files changed, 47 insertions, 1 deletions
diff --git a/src/gr-fadingui/grc/CMakeLists.txt b/src/gr-fadingui/grc/CMakeLists.txt index 98713e8..1fe2b9c 100644 --- a/src/gr-fadingui/grc/CMakeLists.txt +++ b/src/gr-fadingui/grc/CMakeLists.txt @@ -19,5 +19,6 @@ # Boston, MA 02110-1301, USA. install(FILES fadingui_datasource.block.yml - fadingui_dearpygui_sink.block.yml DESTINATION share/gnuradio/grc/blocks + fadingui_dearpygui_sink.block.yml + fadingui_xor_frame_sync.block.yml DESTINATION share/gnuradio/grc/blocks ) 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 |