From 7ee106187e1d0991e7ae79abd905a79dc5760b5f Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 12 Oct 2020 12:22:00 +0200 Subject: python: Add access to the property_tree from Python Example: >>> usrp = uhd.usrp.multi_usrp("") >>> tree = usrp.get_tree() >>> print(tree.access_int("/name").get()) --- host/lib/usrp/multi_usrp_python.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'host/lib/usrp/multi_usrp_python.cpp') diff --git a/host/lib/usrp/multi_usrp_python.cpp b/host/lib/usrp/multi_usrp_python.cpp index 602fc5178..c1ee17d0b 100644 --- a/host/lib/usrp/multi_usrp_python.cpp +++ b/host/lib/usrp/multi_usrp_python.cpp @@ -5,7 +5,9 @@ // SPDX-License-Identifier: GPL-3.0-or-later // +#include #include +#include namespace py = pybind11; @@ -27,6 +29,8 @@ void export_multi_usrp(py::module& m) .def(py::init(&multi_usrp::make)) // clang-format off + .def("get_tree" , &multi_usrp::get_tree) + // General USRP methods .def("get_rx_freq" , &multi_usrp::get_rx_freq, py::arg("chan") = 0) .def("get_rx_num_channels" , &multi_usrp::get_rx_num_channels) -- cgit v1.2.3