diff options
Diffstat (limited to 'gr-uhd/python/uhd/bindings/rfnoc_tx_radio_python.cc')
-rw-r--r-- | gr-uhd/python/uhd/bindings/rfnoc_tx_radio_python.cc | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/gr-uhd/python/uhd/bindings/rfnoc_tx_radio_python.cc b/gr-uhd/python/uhd/bindings/rfnoc_tx_radio_python.cc new file mode 100644 index 0000000000..1536510d31 --- /dev/null +++ b/gr-uhd/python/uhd/bindings/rfnoc_tx_radio_python.cc @@ -0,0 +1,147 @@ +/* + * Copyright 2021 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(rfnoc_tx_radio.h) */ +/* BINDTOOL_HEADER_FILE_HASH(6a7fea399cb9d3f5ac2849fb0d8135e4) */ +/***********************************************************************************/ + +#include <pybind11/complex.h> +#include <pybind11/pybind11.h> +#include <pybind11/stl.h> + +namespace py = pybind11; + +#include <gnuradio/uhd/rfnoc_tx_radio.h> +// pydoc.h is automatically generated in the build directory +#include <rfnoc_tx_radio_pydoc.h> + +void bind_rfnoc_tx_radio(py::module& m) +{ + + using rfnoc_tx_radio = ::gr::uhd::rfnoc_tx_radio; + + + py::class_<rfnoc_tx_radio, + gr::uhd::rfnoc_block, + gr::block, + gr::basic_block, + std::shared_ptr<rfnoc_tx_radio>>(m, "rfnoc_tx_radio", D(rfnoc_tx_radio)) + + .def(py::init(&rfnoc_tx_radio::make), + py::arg("graph"), + py::arg("block_args"), + py::arg("device_select"), + py::arg("instance"), + D(rfnoc_tx_radio, make)) + + + .def("set_rate", + &rfnoc_tx_radio::set_rate, + py::arg("rate"), + D(rfnoc_tx_radio, set_rate)) + + + .def("set_antenna", + &rfnoc_tx_radio::set_antenna, + py::arg("antenna"), + py::arg("chan"), + D(rfnoc_tx_radio, set_antenna)) + + + .def("set_frequency", + &rfnoc_tx_radio::set_frequency, + py::arg("frequency"), + py::arg("chan"), + D(rfnoc_tx_radio, set_frequency)) + + + .def("set_tune_args", + &rfnoc_tx_radio::set_tune_args, + py::arg("args"), + py::arg("chan"), + D(rfnoc_tx_radio, set_tune_args)) + + + .def("set_gain", + (double (rfnoc_tx_radio::*)(double const, size_t const)) & + rfnoc_tx_radio::set_gain, + py::arg("gain"), + py::arg("chan"), + D(rfnoc_tx_radio, set_gain, 0)) + + + .def( + "set_gain", + (double (rfnoc_tx_radio::*)(double const, std::string const&, size_t const)) & + rfnoc_tx_radio::set_gain, + py::arg("gain"), + py::arg("name"), + py::arg("chan"), + D(rfnoc_tx_radio, set_gain, 1)) + + + .def("set_gain_profile", + &rfnoc_tx_radio::set_gain_profile, + py::arg("profile"), + py::arg("chan"), + D(rfnoc_tx_radio, set_gain_profile)) + + + .def("set_bandwidth", + &rfnoc_tx_radio::set_bandwidth, + py::arg("bandwidth"), + py::arg("chan"), + D(rfnoc_tx_radio, set_bandwidth)) + + + .def("set_lo_source", + &rfnoc_tx_radio::set_lo_source, + py::arg("source"), + py::arg("name"), + py::arg("chan"), + D(rfnoc_tx_radio, set_lo_source)) + + + .def("set_lo_export_enabled", + &rfnoc_tx_radio::set_lo_export_enabled, + py::arg("enabled"), + py::arg("name"), + py::arg("chan"), + D(rfnoc_tx_radio, set_lo_export_enabled)) + + + .def("set_lo_freq", + &rfnoc_tx_radio::set_lo_freq, + py::arg("freq"), + py::arg("name"), + py::arg("chan"), + D(rfnoc_tx_radio, set_lo_freq)) + + + .def("set_dc_offset", + &rfnoc_tx_radio::set_dc_offset, + py::arg("offset"), + py::arg("chan"), + D(rfnoc_tx_radio, set_dc_offset)) + + + .def("set_iq_balance", + &rfnoc_tx_radio::set_iq_balance, + py::arg("correction"), + py::arg("chan"), + D(rfnoc_tx_radio, set_iq_balance)) + + ; +} |