 |
GNU Radio Manual and C++ API Reference
3.8.2.0
The Free & Open Software Radio Ecosystem
|
|
Go to the documentation of this file.
23 #ifndef CHUNKS_TO_SYMBOLS_H
24 #define CHUNKS_TO_SYMBOLS_H
54 template <
class IN_T,
class OUT_T>
58 typedef boost::shared_ptr<chunks_to_symbols<IN_T, OUT_T>>
sptr;
66 static sptr make(
const std::vector<OUT_T>& symbol_table,
const int D = 1);
68 virtual int D()
const = 0;
chunks_to_symbols< std::uint8_t, gr_complex > chunks_to_symbols_bc
Definition: chunks_to_symbols.h:74
virtual std::vector< OUT_T > symbol_table() const =0
chunks_to_symbols< std::int32_t, float > chunks_to_symbols_if
Definition: chunks_to_symbols.h:77
chunks_to_symbols< std::int16_t, gr_complex > chunks_to_symbols_sc
Definition: chunks_to_symbols.h:76
chunks_to_symbols< std::int32_t, gr_complex > chunks_to_symbols_ic
Definition: chunks_to_symbols.h:78
chunks_to_symbols< std::int16_t, float > chunks_to_symbols_sf
Definition: chunks_to_symbols.h:75
virtual void set_symbol_table(const std::vector< OUT_T > &symbol_table)=0
#define DIGITAL_API
Definition: gr-digital/include/gnuradio/digital/api.h:30
synchronous 1:N input to output with history
Definition: sync_interpolator.h:38
boost::shared_ptr< chunks_to_symbols< IN_T, OUT_T > > sptr
Definition: chunks_to_symbols.h:58
chunks_to_symbols< std::uint8_t, float > chunks_to_symbols_bf
Definition: chunks_to_symbols.h:73
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition: basic_block.h:43
static sptr make(const std::vector< OUT_T > &symbol_table, const int D=1)
Map a stream of unpacked symbol indexes to stream of float or complex constellation points in D dimen...
Definition: chunks_to_symbols.h:56