diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-10-24 14:37:55 -0700 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-11-01 15:40:31 +0100 |
commit | 8261565a805d3d3beb68b9e716786bf41e03a2f5 (patch) | |
tree | d3b1abec857d886da43a95eedfc1c3ec6310f944 /gr-blocks/grc | |
parent | 9e24c1e34083f953b8fda76ca0575d378a5e10d4 (diff) |
blocks: transcendental: Default to complex_float in GRC bindings
The default is complex_double, or float. The former is rarely used in
GNU Radio, hence, it is not a good default.
Diffstat (limited to 'gr-blocks/grc')
-rw-r--r-- | gr-blocks/grc/blocks_transcendental.block.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/grc/blocks_transcendental.block.yml b/gr-blocks/grc/blocks_transcendental.block.yml index d21f052613..f1b1851ee6 100644 --- a/gr-blocks/grc/blocks_transcendental.block.yml +++ b/gr-blocks/grc/blocks_transcendental.block.yml @@ -6,7 +6,7 @@ parameters: - id: type label: Type dtype: enum - options: [complex_double, float] + options: [complex_float, float] option_labels: [Complex, Float] option_attributes: type: [complex, float] |