diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2021-03-25 15:54:30 -0400 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-04-21 14:02:57 -0400 |
commit | cfee2be5e63eef28a1835e6039ec4511d4500d88 (patch) | |
tree | 5211991ebef676bbbf2b64a382443785db2e02e9 /gr-digital/python/digital/bindings/python_bindings.cc | |
parent | dd8c9f59f725c4023082d7298dd0509b0e21a324 (diff) |
digital: remove simple_{correlator,framer}
Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
Diffstat (limited to 'gr-digital/python/digital/bindings/python_bindings.cc')
-rw-r--r-- | gr-digital/python/digital/bindings/python_bindings.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gr-digital/python/digital/bindings/python_bindings.cc b/gr-digital/python/digital/bindings/python_bindings.cc index 0cf304cf95..2621412e6a 100644 --- a/gr-digital/python/digital/bindings/python_bindings.cc +++ b/gr-digital/python/digital/bindings/python_bindings.cc @@ -93,9 +93,6 @@ void bind_protocol_formatter_async(py::module&); void bind_protocol_formatter_bb(py::module&); void bind_protocol_parser_b(py::module&); void bind_scrambler_bb(py::module&); -void bind_simple_correlator(py::module&); -void bind_simple_framer(py::module&); -void bind_simple_framer_sync(py::module&); void bind_symbol_sync_cc(py::module&); void bind_symbol_sync_ff(py::module&); void bind_timing_error_detector_type(py::module&); @@ -198,9 +195,6 @@ PYBIND11_MODULE(digital_python, m) bind_protocol_formatter_bb(m); bind_protocol_parser_b(m); bind_scrambler_bb(m); - bind_simple_correlator(m); - bind_simple_framer(m); - bind_simple_framer_sync(m); bind_symbol_sync_cc(m); bind_symbol_sync_ff(m); bind_timing_error_detector_type(m); |