aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndré Apitzsch <andre.apitzsch@etit.tu-chemnitz.de>2022-01-10 11:54:15 +0100
committermormj <34754695+mormj@users.noreply.github.com>2022-01-11 06:45:40 -0500
commit5277c1ead928720ffc1e9b159c513aa269810802 (patch)
tree45e8914fc176e4631a7d0a3ea0625d8a97a4b259
parentqtgui: initial value of autoscalex defined (diff)
downloadgnuradio-5277c1ead928720ffc1e9b159c513aa269810802.tar.xz
gnuradio-5277c1ead928720ffc1e9b159c513aa269810802.zip
pybind: fix rfnoc_block binding generation
Signed-off-by: André Apitzsch <andre.apitzsch@etit.tu-chemnitz.de>
-rw-r--r--gr-utils/bindtool/templates/generic_python_cc.mako3
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-utils/bindtool/templates/generic_python_cc.mako b/gr-utils/bindtool/templates/generic_python_cc.mako
index e0f60b7b1..46c065a24 100644
--- a/gr-utils/bindtool/templates/generic_python_cc.mako
+++ b/gr-utils/bindtool/templates/generic_python_cc.mako
@@ -146,7 +146,8 @@ if 'bases' in cls:
if (base_str.endswith('gr::sync_block') or
base_str.endswith('gr::sync_interpolator') or
base_str.endswith('gr::sync_decimator') or
- base_str.endswith('gr::tagged_stream_block')):
+ base_str.endswith('gr::tagged_stream_block') or
+ base_str.endswith('gr::uhd::rfnoc_block')):
base_str += ", gr::block"
if base_str.endswith('gr::block'):
base_str += ", gr::basic_block"