GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
dvbt2_modulator_bc.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2015,2017 Free Software Foundation, Inc.
4  *
5  * SPDX-License-Identifier: GPL-3.0-or-later
6  *
7  */
8 
9 #ifndef INCLUDED_DTV_DVBT2_MODULATOR_BC_H
10 #define INCLUDED_DTV_DVBT2_MODULATOR_BC_H
11 
12 #include <gnuradio/block.h>
13 #include <gnuradio/dtv/api.h>
16 
17 namespace gr {
18 namespace dtv {
19 
20 /*!
21  * \brief Modulates DVB-T2 cells.
22  * \ingroup dtv
23  *
24  * Input: Bit interleaved (with column twist and bit to cell word de-multiplexing) cells.
25  * \n Output: QPSK, 16QAM, 64QAM or 256QAM modulated complex IQ values (cells).
26  */
27 class DTV_API dvbt2_modulator_bc : virtual public gr::block
28 {
29 public:
30  typedef std::shared_ptr<dvbt2_modulator_bc> sptr;
31 
32  /*!
33  * \brief Create a DVB-T2 constellation modulator.
34  *
35  * \param framesize FEC frame size (normal or short).
36  * \param constellation DVB-T2 constellation.
37  * \param rotation DVB-T2 constellation rotation (on or off).
38  */
39  static sptr make(dvb_framesize_t framesize,
40  dvb_constellation_t constellation,
41  dvbt2_rotation_t rotation);
42 };
43 
44 } // namespace dtv
45 } // namespace gr
46 
47 #endif /* INCLUDED_DTV_DVBT2_MODULATOR_BC_H */
The abstract base class for all 'terminal' processing blocks.
Definition: gnuradio-runtime/include/gnuradio/block.h:63
Modulates DVB-T2 cells.
Definition: dvbt2_modulator_bc.h:28
std::shared_ptr< dvbt2_modulator_bc > sptr
Definition: dvbt2_modulator_bc.h:30
static sptr make(dvb_framesize_t framesize, dvb_constellation_t constellation, dvbt2_rotation_t rotation)
Create a DVB-T2 constellation modulator.
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
dvb_framesize_t
Definition: dvb_config.h:73
dvbt2_rotation_t
Definition: dvbt2_config.h:14
dvb_constellation_t
Definition: dvb_config.h:79
GNU Radio logging wrapper.
Definition: basic_block.h:29