GNU Radio C++ API Reference  gcd20ee2
The Free & Open Software Radio Ecosystem
chunks_to_symbols.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004,2012,2018 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef CHUNKS_TO_SYMBOLS_H
12 #define CHUNKS_TO_SYMBOLS_H
13 
14 #include <gnuradio/digital/api.h>
16 #include <cstdint>
17 
18 namespace gr {
19 namespace digital {
20 
21 /*!
22  * \brief Map a stream of unpacked symbol indexes to stream of
23  * float or complex constellation points in D dimensions (D = 1 by
24  * default)
25  *
26  * \ingroup digital
27  *
28  * \details
29  * \li input: stream of IN_T
30  * \li output: stream of OUT_T
31  *
32  * \li out[n D + k] = symbol_table[in[n] D + k], k=0,1,...,D-1
33  *
34  * The combination of gr::blocks::packed_to_unpacked_XX followed
35  * by gr::digital::chunks_to_symbols_XY handles the general case
36  * of mapping from a stream of bytes or shorts into arbitrary
37  * float or complex symbols.
38  *
39  * \sa gr::blocks::packed_to_unpacked_bb, gr::blocks::unpacked_to_packed_bb,
40  * \sa gr::blocks::packed_to_unpacked_ss, gr::blocks::unpacked_to_packed_ss,
41  * \sa gr::digital::chunks_to_symbols_bf, gr::digital::chunks_to_symbols_bc.
42  * \sa gr::digital::chunks_to_symbols_sf, gr::digital::chunks_to_symbols_sc.
43  */
44 template <class IN_T, class OUT_T>
46 {
47 public:
48  typedef std::shared_ptr<chunks_to_symbols<IN_T, OUT_T>> sptr;
49 
50  /*!
51  * Make a chunks-to-symbols block.
52  *
53  * \param symbol_table: list that maps chunks to symbols.
54  * \param D: dimension of table.
55  */
56  static sptr make(const std::vector<OUT_T>& symbol_table, const unsigned int D = 1);
57 
58  virtual unsigned int D() const = 0;
59  virtual std::vector<OUT_T> symbol_table() const = 0;
60  virtual void set_symbol_table(const std::vector<OUT_T>& symbol_table) = 0;
61 };
62 
69 } /* namespace digital */
70 } /* namespace gr */
71 
72 #endif /* CHUNKS_TO_SYMBOLS_H */
#define D(...)
Definition: basic_block_pydoc_template.h:10
Map a stream of unpacked symbol indexes to stream of float or complex constellation points in D dimen...
Definition: chunks_to_symbols.h:46
std::shared_ptr< chunks_to_symbols< IN_T, OUT_T > > sptr
Definition: chunks_to_symbols.h:48
static sptr make(const std::vector< OUT_T > &symbol_table, const unsigned int D=1)
virtual void set_symbol_table(const std::vector< OUT_T > &symbol_table)=0
virtual unsigned int D() const =0
virtual std::vector< OUT_T > symbol_table() const =0
synchronous 1:N input to output with history
Definition: sync_interpolator.h:26
#define DIGITAL_API
Definition: gr-digital/include/gnuradio/digital/api.h:18
chunks_to_symbols< std::int16_t, gr_complex > chunks_to_symbols_sc
Definition: chunks_to_symbols.h:66
chunks_to_symbols< std::uint8_t, float > chunks_to_symbols_bf
Definition: chunks_to_symbols.h:63
chunks_to_symbols< std::int32_t, float > chunks_to_symbols_if
Definition: chunks_to_symbols.h:67
chunks_to_symbols< std::int16_t, float > chunks_to_symbols_sf
Definition: chunks_to_symbols.h:65
chunks_to_symbols< std::int32_t, gr_complex > chunks_to_symbols_ic
Definition: chunks_to_symbols.h:68
chunks_to_symbols< std::uint8_t, gr_complex > chunks_to_symbols_bc
Definition: chunks_to_symbols.h:64
GNU Radio logging wrapper.
Definition: basic_block.h:29