summaryrefslogtreecommitdiff
path: root/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc')
-rw-r--r--gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc89
1 files changed, 89 insertions, 0 deletions
diff --git a/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc b/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc
new file mode 100644
index 0000000000..6ed96bfd76
--- /dev/null
+++ b/gr-analog/python/analog/bindings/pwr_squelch_cc_python.cc
@@ -0,0 +1,89 @@
+/*
+ * 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(pwr_squelch_cc.h) */
+/* BINDTOOL_HEADER_FILE_HASH(9a039b4f53e3fc5fce917d466fb459c8) */
+/***********************************************************************************/
+
+#include <pybind11/complex.h>
+#include <pybind11/pybind11.h>
+#include <pybind11/stl.h>
+
+namespace py = pybind11;
+
+#include <gnuradio/analog/pwr_squelch_cc.h>
+// pydoc.h is automatically generated in the build directory
+#include <pwr_squelch_cc_pydoc.h>
+
+void bind_pwr_squelch_cc(py::module& m)
+{
+
+ using pwr_squelch_cc = ::gr::analog::pwr_squelch_cc;
+
+
+ py::class_<pwr_squelch_cc,
+ gr::analog::squelch_base_cc,
+ std::shared_ptr<pwr_squelch_cc>>(m, "pwr_squelch_cc", D(pwr_squelch_cc))
+
+ .def(py::init(&pwr_squelch_cc::make),
+ py::arg("db"),
+ py::arg("alpha") = 1.0E-4,
+ py::arg("ramp") = 0,
+ py::arg("gate") = false,
+ D(pwr_squelch_cc, make))
+
+
+ .def("squelch_range",
+ &pwr_squelch_cc::squelch_range,
+ D(pwr_squelch_cc, squelch_range))
+
+
+ .def("threshold", &pwr_squelch_cc::threshold, D(pwr_squelch_cc, threshold))
+
+
+ .def("set_threshold",
+ &pwr_squelch_cc::set_threshold,
+ py::arg("db"),
+ D(pwr_squelch_cc, set_threshold))
+
+
+ .def("set_alpha",
+ &pwr_squelch_cc::set_alpha,
+ py::arg("alpha"),
+ D(pwr_squelch_cc, set_alpha))
+
+
+ .def("ramp", &pwr_squelch_cc::ramp, D(pwr_squelch_cc, ramp))
+
+
+ .def("set_ramp",
+ &pwr_squelch_cc::set_ramp,
+ py::arg("ramp"),
+ D(pwr_squelch_cc, set_ramp))
+
+
+ .def("gate", &pwr_squelch_cc::gate, D(pwr_squelch_cc, gate))
+
+
+ .def("set_gate",
+ &pwr_squelch_cc::set_gate,
+ py::arg("gate"),
+ D(pwr_squelch_cc, set_gate))
+
+
+ .def("unmuted", &pwr_squelch_cc::unmuted, D(pwr_squelch_cc, unmuted))
+
+ ;
+}