aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/switchboard_block_control_python.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/rfnoc/switchboard_block_control_python.hpp')
-rw-r--r--host/lib/rfnoc/switchboard_block_control_python.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/host/lib/rfnoc/switchboard_block_control_python.hpp b/host/lib/rfnoc/switchboard_block_control_python.hpp
new file mode 100644
index 000000000..7715b05c0
--- /dev/null
+++ b/host/lib/rfnoc/switchboard_block_control_python.hpp
@@ -0,0 +1,21 @@
+//
+// Copyright 2020 Ettus Research, a National Instruments Brand
+//
+// SPDX-License-Identifier: GPL-3.0-or-later
+//
+
+#pragma once
+
+#include "block_controller_factory_python.hpp"
+#include <uhd/rfnoc/switchboard_block_control.hpp>
+
+using namespace uhd::rfnoc;
+
+void export_switchboard_block_control(py::module& m)
+{
+ py::class_<switchboard_block_control,
+ noc_block_base,
+ switchboard_block_control::sptr>(m, "switchboard_block_control")
+ .def(py::init(&block_controller_factory<switchboard_block_control>::make_from))
+ .def("connect", &switchboard_block_control::connect);
+}