diff options
Diffstat (limited to 'gr-dtv/python/dtv/bindings/dvbs2_config_python.cc')
-rw-r--r-- | gr-dtv/python/dtv/bindings/dvbs2_config_python.cc | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/gr-dtv/python/dtv/bindings/dvbs2_config_python.cc b/gr-dtv/python/dtv/bindings/dvbs2_config_python.cc new file mode 100644 index 0000000000..e0509be62b --- /dev/null +++ b/gr-dtv/python/dtv/bindings/dvbs2_config_python.cc @@ -0,0 +1,51 @@ +/* + * 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 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(dvbs2_config.h) */ +/* BINDTOOL_HEADER_FILE_HASH(db5f4cebaba9807baacaf99342135375) */ +/***********************************************************************************/ + +#include <pybind11/complex.h> +#include <pybind11/pybind11.h> +#include <pybind11/stl.h> + +namespace py = pybind11; + +#include <gnuradio/dtv/dvbs2_config.h> +// pydoc.h is automatically generated in the build directory +#include <dvbs2_config_pydoc.h> + +void bind_dvbs2_config(py::module& m) +{ + + + py::enum_<::gr::dtv::dvbs2_rolloff_factor_t>(m, "dvbs2_rolloff_factor_t") + .value("RO_0_35", ::gr::dtv::RO_0_35) // 0 + .value("RO_0_25", ::gr::dtv::RO_0_25) // 1 + .value("RO_0_20", ::gr::dtv::RO_0_20) // 2 + .value("RO_RESERVED", ::gr::dtv::RO_RESERVED) // 3 + .value("RO_0_15", ::gr::dtv::RO_0_15) // 4 + .value("RO_0_10", ::gr::dtv::RO_0_10) // 5 + .value("RO_0_05", ::gr::dtv::RO_0_05) // 6 + .export_values(); + py::enum_<::gr::dtv::dvbs2_pilots_t>(m, "dvbs2_pilots_t") + .value("PILOTS_OFF", ::gr::dtv::PILOTS_OFF) // 0 + .value("PILOTS_ON", ::gr::dtv::PILOTS_ON) // 1 + .export_values(); + py::enum_<::gr::dtv::dvbs2_interpolation_t>(m, "dvbs2_interpolation_t") + .value("INTERPOLATION_OFF", ::gr::dtv::INTERPOLATION_OFF) // 0 + .value("INTERPOLATION_ON", ::gr::dtv::INTERPOLATION_ON) // 1 + .export_values(); +} |