GNU Radio Manual and C++ API Reference  3.10.9.1
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) \ingroup converter_blk
25  *
26  * \details
27  * \li input: stream of IN_T
28  * \li output: stream of OUT_T
29  *
30  * \li out[n D + k] = symbol_table[in[n] D + k], k=0,1,...,D-1
31  *
32  * The combination of gr::blocks::packed_to_unpacked_XX followed
33  * by gr::digital::chunks_to_symbols_XY handles the general case
34  * of mapping from a stream of bytes or shorts into arbitrary
35  * float or complex symbols.
36  *
37  * \sa gr::blocks::packed_to_unpacked_bb, gr::blocks::unpacked_to_packed_bb,
38  * \sa gr::blocks::packed_to_unpacked_ss, gr::blocks::unpacked_to_packed_ss,
39  * \sa gr::digital::chunks_to_symbols_bf, gr::digital::chunks_to_symbols_bc.
40  * \sa gr::digital::chunks_to_symbols_sf, gr::digital::chunks_to_symbols_sc.
41  */
42 template <class IN_T, class OUT_T>
44 {
45 public:
46  typedef std::shared_ptr<chunks_to_symbols<IN_T, OUT_T>> sptr;
47 
48  /*!
49  * Make a chunks-to-symbols block.
50  *
51  * \param symbol_table: list that maps chunks to symbols.
52  * \param D: dimension of table.
53  */
54  static sptr make(const std::vector<OUT_T>& symbol_table, const unsigned int D = 1);
55 
56  virtual unsigned int D() const = 0;
57  virtual std::vector<OUT_T> symbol_table() const = 0;
58  virtual void set_symbol_table(const std::vector<OUT_T>& symbol_table) = 0;
59 };
60 
67 } /* namespace digital */
68 } /* namespace gr */
69 
70 #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:44
std::shared_ptr< chunks_to_symbols< IN_T, OUT_T > > sptr
Definition: chunks_to_symbols.h:46
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:64
chunks_to_symbols< std::uint8_t, float > chunks_to_symbols_bf
Definition: chunks_to_symbols.h:61
chunks_to_symbols< std::int32_t, float > chunks_to_symbols_if
Definition: chunks_to_symbols.h:65
chunks_to_symbols< std::int16_t, float > chunks_to_symbols_sf
Definition: chunks_to_symbols.h:63
chunks_to_symbols< std::int32_t, gr_complex > chunks_to_symbols_ic
Definition: chunks_to_symbols.h:66
chunks_to_symbols< std::uint8_t, gr_complex > chunks_to_symbols_bc
Definition: chunks_to_symbols.h:62
GNU Radio logging wrapper.
Definition: basic_block.h:29