diff options
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/gr/bindings/sync_block_python.cc')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/gr/bindings/sync_block_python.cc | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/gnuradio-runtime/python/gnuradio/gr/bindings/sync_block_python.cc b/gnuradio-runtime/python/gnuradio/gr/bindings/sync_block_python.cc new file mode 100644 index 0000000000..fc18145244 --- /dev/null +++ b/gnuradio-runtime/python/gnuradio/gr/bindings/sync_block_python.cc @@ -0,0 +1,74 @@ +/* + * Copyright 2020 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 */ + +#include <pybind11/complex.h> +#include <pybind11/pybind11.h> +#include <pybind11/stl.h> + +namespace py = pybind11; + +#include <gnuradio/sync_block.h> +// pydoc.h is automatically generated in the build directory +#include <sync_block_pydoc.h> + +void bind_sync_block(py::module& m) +{ + + using sync_block = ::gr::sync_block; + + + py::class_<sync_block, gr::block, gr::basic_block, std::shared_ptr<sync_block>>( + m, "sync_block", D(sync_block)) + + + .def("work", + &sync_block::work, + py::arg("noutput_items"), + py::arg("input_items"), + py::arg("output_items"), + D(sync_block, work)) + + + .def("forecast", + &sync_block::forecast, + py::arg("noutput_items"), + py::arg("ninput_items_required"), + D(sync_block, forecast)) + + + .def("general_work", + &sync_block::general_work, + py::arg("noutput_items"), + py::arg("ninput_items"), + py::arg("input_items"), + py::arg("output_items"), + D(sync_block, general_work)) + + + .def("fixed_rate_ninput_to_noutput", + &sync_block::fixed_rate_ninput_to_noutput, + py::arg("ninput"), + D(sync_block, fixed_rate_ninput_to_noutput)) + + + .def("fixed_rate_noutput_to_ninput", + &sync_block::fixed_rate_noutput_to_ninput, + py::arg("noutput"), + D(sync_block, fixed_rate_noutput_to_ninput)) + + ; + + + py::module m_messages = m.def_submodule("messages"); + + + py::module m_thread = m.def_submodule("thread"); +} |