1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* 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/analog/pwr_squelch_ff.h>
// pydoc.h is automatically generated in the build directory
#include <pwr_squelch_ff_pydoc.h>
void bind_pwr_squelch_ff(py::module& m)
{
using pwr_squelch_ff = ::gr::analog::pwr_squelch_ff;
py::class_<pwr_squelch_ff,
gr::analog::squelch_base_ff,
std::shared_ptr<pwr_squelch_ff>>(m, "pwr_squelch_ff", D(pwr_squelch_ff))
.def(py::init(&pwr_squelch_ff::make),
py::arg("db"),
py::arg("alpha") = 1.0E-4,
py::arg("ramp") = 0,
py::arg("gate") = false,
D(pwr_squelch_ff, make))
.def("squelch_range",
&pwr_squelch_ff::squelch_range,
D(pwr_squelch_ff, squelch_range))
.def("threshold", &pwr_squelch_ff::threshold, D(pwr_squelch_ff, threshold))
.def("set_threshold",
&pwr_squelch_ff::set_threshold,
py::arg("db"),
D(pwr_squelch_ff, set_threshold))
.def("set_alpha",
&pwr_squelch_ff::set_alpha,
py::arg("alpha"),
D(pwr_squelch_ff, set_alpha))
.def("ramp", &pwr_squelch_ff::ramp, D(pwr_squelch_ff, ramp))
.def("set_ramp",
&pwr_squelch_ff::set_ramp,
py::arg("ramp"),
D(pwr_squelch_ff, set_ramp))
.def("gate", &pwr_squelch_ff::gate, D(pwr_squelch_ff, gate))
.def("set_gate",
&pwr_squelch_ff::set_gate,
py::arg("gate"),
D(pwr_squelch_ff, set_gate))
.def("unmuted", &pwr_squelch_ff::unmuted, D(pwr_squelch_ff, unmuted))
;
}
|