From a958015fcd19f8374dc2016df471641fcdf7c158 Mon Sep 17 00:00:00 2001
From: Josh Morman <mormjb@gmail.com>
Date: Thu, 23 Apr 2020 10:35:45 -0400
Subject: fft: add pybind11 bindings

---
 gr-fft/python/fft/bindings/goertzel_python.cc | 55 +++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
 create mode 100644 gr-fft/python/fft/bindings/goertzel_python.cc

(limited to 'gr-fft/python/fft/bindings/goertzel_python.cc')

diff --git a/gr-fft/python/fft/bindings/goertzel_python.cc b/gr-fft/python/fft/bindings/goertzel_python.cc
new file mode 100644
index 0000000000..79bc725636
--- /dev/null
+++ b/gr-fft/python/fft/bindings/goertzel_python.cc
@@ -0,0 +1,55 @@
+/*
+ * 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/fft/goertzel.h>
+// pydoc.h is automatically generated in the build directory
+#include <goertzel_pydoc.h>
+
+void bind_goertzel(py::module& m)
+{
+
+    using goertzel = ::gr::fft::goertzel;
+
+
+    py::class_<goertzel, std::shared_ptr<goertzel>>(m, "goertzel", D(goertzel))
+
+        .def(py::init<int, int, float>(),
+             py::arg("rate"),
+             py::arg("len"),
+             py::arg("freq"),
+             D(goertzel, goertzel, 0))
+        .def(py::init<gr::fft::goertzel const&>(),
+             py::arg("arg0"),
+             D(goertzel, goertzel, 1))
+
+        .def("set_params",
+             &goertzel::set_params,
+             py::arg("rate"),
+             py::arg("len"),
+             py::arg("freq"),
+             D(goertzel, set_params))
+        .def("batch", &goertzel::batch, py::arg("in"), D(goertzel, batch))
+        .def("input", &goertzel::input, py::arg("in"), D(goertzel, input))
+
+
+        .def("output", &goertzel::output, D(goertzel, output))
+
+
+        .def("ready", &goertzel::ready, D(goertzel, ready))
+
+        ;
+}
-- 
cgit v1.2.3