summaryrefslogtreecommitdiff
path: root/gr-digital/include/digital/ofdm_serializer_vcc.h
blob: 3893d6674e3e455abc229a8c2b5f071455a0fce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* -*- c++ -*- */
/* Copyright 2012 Free Software Foundation, Inc.
 * 
 * This file is part of GNU Radio
 * 
 * GNU Radio is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3, or (at your option)
 * any later version.
 * 
 * GNU Radio is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with GNU Radio; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street,
 * Boston, MA 02110-1301, USA.
 */

#ifndef INCLUDED_DIGITAL_OFDM_SERIALIZER_VCC_H
#define INCLUDED_DIGITAL_OFDM_SERIALIZER_VCC_H

#include <digital/api.h>
#include <gr_tagged_stream_block.h>
#include <digital_ofdm_carrier_allocator_cvc.h>

namespace gr {
  namespace digital {

    /*!
     * \brief Serializes complex modulations symbols from OFDM sub-carriers
     * \ingroup ofdm_blk
     *
     * This is the inverse block to the carrier_allocator_cvc. It outputs the
     * complex data symbols as a tagged stream, discarding the pilot symbols.
     *
     * If given, two different tags are parsed: The first key (\p len_tag_key)
     * specifies the number of OFDM symbols in the frame at the input. The
     * second key (\p packet_len_tag_key) specifies the number of complex symbols
     * that are coded into this frame. If given, this second key is then used
     * at the output, otherwise, \p len_tag_key is used.
     * If both are given, the packet length specifies the maximum number of
     * output items, and the frame length specifies the exact number of
     * consumed input items.
     *
     * Input: Complex vectors of length \p fft_len
     * Output: Complex scalars, in the same order as specified in occupied_carriers.
     */
    class DIGITAL_API ofdm_serializer_vcc : virtual public gr_tagged_stream_block
    {
     public:
      typedef boost::shared_ptr<ofdm_serializer_vcc> sptr;

      /*!
       * \param fft_len FFT length
       * \param occupied_carriers See ofdm_carrier_allocator_cvc.
       * \param len_tag_key The key of the tag identifying the length of the input frame in OFDM symbols.
       * \param packet_len_tag_key The key of the tag identifying the number of complex symbols in this packet.
       * \param symbols_skipped If the first symbol is not allocated as in \p occupied_carriers[0], set this
       * \param input_is_shifted If the input has the DC carrier on index 0 (i.e. it is not FFT shifted), set this to false
       */
      static sptr make(
	  int fft_len,
	  const std::vector<std::vector<int> > &occupied_carriers,
	  const std::string &len_tag_key="frame_len",
	  const std::string &packet_len_tag_key="",
	  int symbols_skipped=0,
	  bool input_is_shifted=true
      );

      /*!
       * \param allocator The carrier allocator block of which this shall be the inverse
       * \param packet_len_tag_key The key of the tag identifying the number of complex symbols in this packet.
       * \param symbols_skipped If the first symbol is not allocated as in \p occupied_carriers[0], set this
       * \param input_is_shifted If the input has the DC carrier on index 0 (i.e. it is not FFT shifted), set this to false
       */
      static sptr make(
	  const digital_ofdm_carrier_allocator_cvc_sptr &allocator,
	  const std::string &packet_len_tag_key="",
	  int symbols_skipped=0,
	  bool input_is_shifted=true
      );
    };

  } // namespace digital
} // namespace gr

#endif /* INCLUDED_DIGITAL_OFDM_SERIALIZER_VCC_H */