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/include | |
parent | dd8c9f59f725c4023082d7298dd0509b0e21a324 (diff) |
digital: remove simple_{correlator,framer}
Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
Diffstat (limited to 'gr-digital/include')
4 files changed, 0 insertions, 132 deletions
diff --git a/gr-digital/include/gnuradio/digital/CMakeLists.txt b/gr-digital/include/gnuradio/digital/CMakeLists.txt index 08abdb8ed9..e60e5a0175 100644 --- a/gr-digital/include/gnuradio/digital/CMakeLists.txt +++ b/gr-digital/include/gnuradio/digital/CMakeLists.txt @@ -86,9 +86,6 @@ install(FILES probe_density_b.h probe_mpsk_snr_est_c.h scrambler_bb.h - simple_correlator.h - simple_framer.h - simple_framer_sync.h interpolating_resampler_type.h symbol_sync_cc.h symbol_sync_ff.h diff --git a/gr-digital/include/gnuradio/digital/simple_correlator.h b/gr-digital/include/gnuradio/digital/simple_correlator.h deleted file mode 100644 index e59c0aa05b..0000000000 --- a/gr-digital/include/gnuradio/digital/simple_correlator.h +++ /dev/null @@ -1,37 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2004,2013 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * SPDX-License-Identifier: GPL-3.0-or-later - * - */ - -#ifndef INCLUDED_GR_SIMPLE_CORRELATOR_H -#define INCLUDED_GR_SIMPLE_CORRELATOR_H - -#include <gnuradio/block.h> -#include <gnuradio/digital/api.h> - -namespace gr { -namespace digital { - -/*! - * \brief inverse of simple_framer (more or less) - * \ingroup packet_operators_blk - * \ingroup deprecated_blk - */ -class DIGITAL_API simple_correlator : virtual public block -{ -public: - // gr::digital::simple_correlator::sptr - typedef std::shared_ptr<simple_correlator> sptr; - - static sptr make(int payload_bytesize); -}; - -} /* namespace digital */ -} /* namespace gr */ - -#endif /* INCLUDED_GR_SIMPLE_CORRELATOR_H */ diff --git a/gr-digital/include/gnuradio/digital/simple_framer.h b/gr-digital/include/gnuradio/digital/simple_framer.h deleted file mode 100644 index 778ef7f14f..0000000000 --- a/gr-digital/include/gnuradio/digital/simple_framer.h +++ /dev/null @@ -1,47 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2004,2012 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * SPDX-License-Identifier: GPL-3.0-or-later - * - */ - -#ifndef INCLUDED_GR_SIMPLE_FRAMER_H -#define INCLUDED_GR_SIMPLE_FRAMER_H - -#include <gnuradio/block.h> -#include <gnuradio/digital/api.h> - -namespace gr { -namespace digital { - -/*! - * \brief add sync field, seq number and command field to payload - * \ingroup packet_operators_blk - * \ingroup deprecated_blk - * - * \details - * Takes in enough samples to create a full output frame. The - * frame is prepended with the GRSF_SYNC (defined in - * simple_framer_sync.h) and an 8-bit sequence number. - */ -class DIGITAL_API simple_framer : virtual public block -{ -public: - // gr::digital::simple_framer::sptr - typedef std::shared_ptr<simple_framer> sptr; - - /*! - * Make a simple_framer block. - * - * \param payload_bytesize The size of the payload in bytes. - */ - static sptr make(int payload_bytesize); -}; - -} /* namespace digital */ -} /* namespace gr */ - -#endif /* INCLUDED_GR_SIMPLE_FRAMER_H */ diff --git a/gr-digital/include/gnuradio/digital/simple_framer_sync.h b/gr-digital/include/gnuradio/digital/simple_framer_sync.h deleted file mode 100644 index ebdf3ba617..0000000000 --- a/gr-digital/include/gnuradio/digital/simple_framer_sync.h +++ /dev/null @@ -1,45 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2004,2005,2012 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * SPDX-License-Identifier: GPL-3.0-or-later - * - */ - -#ifndef INCLUDED_GR_SIMPLE_FRAMER_SYNC_H -#define INCLUDED_GR_SIMPLE_FRAMER_SYNC_H - -namespace gr { -namespace digital { - -/*! - * Here are a couple of maximum length sequences (m-sequences) - * that were generated by the the "mseq" matlab/octave code - * downloaded from: <a - * href="http://www.mathworks.com/matlabcentral/fileexchange/990">http://www.mathworks.com/matlabcentral/fileexchange/990</a> - * - * <pre> - * 31-bit m-sequence: - * 0110100100001010111011000111110 - * 0x690AEC76 (padded on right with a zero) - * - * 63-bit m-sequence: - * 101011001101110110100100111000101111001010001100001000001111110 - * 0xACDDA4E2F28C20FC (padded on right with a zero) - * </pre> - */ -static constexpr unsigned long long GRSF_SYNC = 0xacdda4e2f28c20fcULL; - -static constexpr int GRSF_BITS_PER_BYTE = 8; -static constexpr int GRSF_SYNC_OVERHEAD = sizeof(GRSF_SYNC); -static constexpr int GRSF_PAYLOAD_OVERHEAD = 1; // 1 byte seqno -static constexpr int GRSF_TAIL_PAD = 1; // one byte trailing padding -static constexpr int GRSF_OVERHEAD = - GRSF_SYNC_OVERHEAD + GRSF_PAYLOAD_OVERHEAD + GRSF_TAIL_PAD; - -} /* namespace digital */ -} /* namespace gr */ - -#endif /* INCLUDED_GR_SIMPLE_FRAMER_SYNC_H */ |