diff options
author | Josh Morman <mormjb@gmail.com> | 2020-06-04 11:54:54 -0400 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-06-04 12:19:45 -0400 |
commit | fbef2bad99585ee24024573db90be14b55794098 (patch) | |
tree | 0d0022173a84d706e10fa192514222a073b5a74f /gr-blocks | |
parent | 9f288e97b8d873541a82d11a5b7e2fc450c2dc30 (diff) |
blocks: remap enums in yml from int to raw for pybind compatibility
Diffstat (limited to 'gr-blocks')
4 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/grc/blocks_ctrlport_probe2_c.block.yml b/gr-blocks/grc/blocks_ctrlport_probe2_c.block.yml index cfd23f565..7058f596e 100644 --- a/gr-blocks/grc/blocks_ctrlport_probe2_c.block.yml +++ b/gr-blocks/grc/blocks_ctrlport_probe2_c.block.yml @@ -17,7 +17,7 @@ parameters: default: '1024' - id: disp_mask label: Display Mask - dtype: int + dtype: raw default: gr.DISPTIME options: [gr.DISPXY | gr.DISPOPTSCATTER, gr.DISPTIME, gr.DISPPSD, gr.DISPSPEC, gr.DISPRAST] diff --git a/gr-blocks/grc/blocks_ctrlport_probe2_x.block.yml b/gr-blocks/grc/blocks_ctrlport_probe2_x.block.yml index 2b4429204..c478a8f7b 100644 --- a/gr-blocks/grc/blocks_ctrlport_probe2_x.block.yml +++ b/gr-blocks/grc/blocks_ctrlport_probe2_x.block.yml @@ -24,7 +24,7 @@ parameters: default: '1024' - id: disp_mask label: Display Mask - dtype: int + dtype: raw default: gr.DISPTIME options: [gr.DISPXY | gr.DISPOPTSCATTER, gr.DISPTIME, gr.DISPPSD, gr.DISPSPEC, gr.DISPRAST] diff --git a/gr-blocks/grc/blocks_packed_to_unpacked_xx.block.yml b/gr-blocks/grc/blocks_packed_to_unpacked_xx.block.yml index 296cfd6b6..851564c09 100644 --- a/gr-blocks/grc/blocks_packed_to_unpacked_xx.block.yml +++ b/gr-blocks/grc/blocks_packed_to_unpacked_xx.block.yml @@ -16,7 +16,7 @@ parameters: default: '2' - id: endianness label: Endianness - dtype: int + dtype: raw options: [gr.GR_MSB_FIRST, gr.GR_LSB_FIRST] option_labels: [MSB, LSB] - id: num_ports diff --git a/gr-blocks/grc/blocks_unpacked_to_packed_xx.block.yml b/gr-blocks/grc/blocks_unpacked_to_packed_xx.block.yml index 41c1860a7..b47729359 100644 --- a/gr-blocks/grc/blocks_unpacked_to_packed_xx.block.yml +++ b/gr-blocks/grc/blocks_unpacked_to_packed_xx.block.yml @@ -16,7 +16,7 @@ parameters: default: '2' - id: endianness label: Endianness - dtype: int + dtype: raw options: [gr.GR_MSB_FIRST, gr.GR_LSB_FIRST] option_labels: [MSB, LSB] - id: num_ports |