Statistics
| Branch: | Tag: | Revision:

root / gr-digital / grc / digital_ofdm_insert_preamble.xml @ f2ab263b

History | View | Annotate | Download (1.6 kB)

1
<?xml version="1.0"?>
2
<!--
3
 Copyright 2011 Free Software Foundation, Inc.
4
 
5
 This file is part of GNU Radio
6
 
7
 GNU Radio is free software; you can redistribute it and/or modify
8
 it under the terms of the GNU General Public License as published by
9
 the Free Software Foundation; either version 3, or (at your option)
10
 any later version.
11
 
12
 GNU Radio is distributed in the hope that it will be useful,
13
 but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 GNU General Public License for more details.
16
 
17
 You should have received a copy of the GNU General Public License
18
 along with GNU Radio; see the file COPYING.  If not, write to
19
 the Free Software Foundation, Inc., 51 Franklin Street,
20
 Boston, MA 02110-1301, USA.
21
-->
22
23
<!--
24
###################################################
25
##OFDM Insert Preamble
26
###################################################
27
 -->
28
<block>
29
        <name>OFDM Insert Preamble</name>
30
        <key>digital_ofdm_insert_preamble</key>
31
        <import>from gnuradio import digital</import>
32
        <make>digital.ofdm_insert_preamble($fft_length, $preamble)</make>
33
        <param>
34
                <name>FFT Length</name>
35
                <key>fft_length</key>
36
                <type>int</type>
37
        </param>
38
        <param>
39
                <name>Preamble</name>
40
                <key>preamble</key>
41
                <type>raw</type>
42
        </param>
43
        <sink>
44
                <name>in</name>
45
                <type>complex</type>
46
                <vlen>$fft_length</vlen>
47
        </sink>
48
        <sink>
49
                <name>flag</name>
50
                <type>byte</type>
51
        <optional>1</optional>
52
        </sink>
53
        <source>
54
                <name>out</name>
55
                <type>complex</type>
56
                <vlen>$fft_length</vlen>
57
        </source>
58
        <source>
59
                <name>flag</name>
60
                <type>byte</type>
61
        <optional>1</optional>
62
        </source>
63
</block>