GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
dvbt2_miso_cc.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_MISO_CC_H
10#define INCLUDED_DTV_DVBT2_MISO_CC_H
11
12#include <gnuradio/dtv/api.h>
15#include <gnuradio/sync_block.h>
16
17namespace gr {
18namespace dtv {
19
20/*!
21 * \brief Splits the stream for MISO (Multiple Input Single Output).
22 * \ingroup dtv
23 *
24 * Input: Frequency interleaved T2 frame. \n
25 * Output1: Frequency interleaved T2 frame (copy of input). \n
26 * Output2: Frequency interleaved T2 frame with modified Alamouti processing.
27 */
28class DTV_API dvbt2_miso_cc : virtual public gr::sync_block
29{
30public:
31 typedef std::shared_ptr<dvbt2_miso_cc> sptr;
32
33 /*!
34 * \brief Create a MISO processor.
35 *
36 * \param carriermode number of carriers (normal or extended).
37 * \param fftsize OFDM IFFT size.
38 * \param pilotpattern DVB-T2 pilot pattern (PP1 - PP8).
39 * \param guardinterval OFDM ISI guard interval.
40 * \param numdatasyms number of OFDM symbols in a T2 frame.
41 * \param paprmode PAPR reduction mode.
42 */
44 dvbt2_fftsize_t fftsize,
45 dvbt2_pilotpattern_t pilotpattern,
46 dvb_guardinterval_t guardinterval,
47 int numdatasyms,
48 dvbt2_papr_t paprmode);
49};
50
51} // namespace dtv
52} // namespace gr
53
54#endif /* INCLUDED_DTV_DVBT2_MISO_CC_H */
Splits the stream for MISO (Multiple Input Single Output).
Definition: dvbt2_miso_cc.h:29
std::shared_ptr< dvbt2_miso_cc > sptr
Definition: dvbt2_miso_cc.h:31
static sptr make(dvbt2_extended_carrier_t carriermode, dvbt2_fftsize_t fftsize, dvbt2_pilotpattern_t pilotpattern, dvb_guardinterval_t guardinterval, int numdatasyms, dvbt2_papr_t paprmode)
Create a MISO processor.
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
dvbt2_fftsize_t
Definition: dvbt2_config.h:43
dvb_guardinterval_t
Definition: dvb_config.h:102
dvbt2_pilotpattern_t
Definition: dvbt2_config.h:69
dvbt2_extended_carrier_t
Definition: dvbt2_config.h:30
dvbt2_papr_t
Definition: dvbt2_config.h:55
GNU Radio logging wrapper.
Definition: basic_block.h:29