Merging OFDM features branch r5661:5759 into trunk. OFDM works over the air with...
[debian/gnuradio] / gnuradio-examples / python / ofdm / transmit_path.py
1 #
2 # Copyright 2005,2006 Free Software Foundation, Inc.
3
4 # This file is part of GNU Radio
5
6 # GNU Radio is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GNU Radio is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Radio; see the file COPYING.  If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street,
19 # Boston, MA 02110-1301, USA.
20
21
22 from gnuradio import gr, gru, blks
23 from gnuradio import usrp
24 from gnuradio import eng_notation
25
26 import copy
27 import sys
28
29 # /////////////////////////////////////////////////////////////////////////////
30 #                              transmit path
31 # /////////////////////////////////////////////////////////////////////////////
32
33 class transmit_path(gr.hier_block): 
34     def __init__(self, fg, options):
35         '''
36         See below for what options should hold
37         '''
38
39         options = copy.copy(options)    # make a copy so we can destructively modify
40
41         self._verbose      = options.verbose
42         self._tx_amplitude = options.tx_amplitude    # digital amplitude sent to USRP
43
44         self.ofdm_tx = \
45                      blks.ofdm_mod(fg, options, msgq_limit=4, pad_for_usrp=False)
46
47         self.amp = gr.multiply_const_cc(1)
48         self.set_tx_amplitude(self._tx_amplitude)
49
50         # Display some information about the setup
51         if self._verbose:
52             self._print_verbage()
53
54         # Create and setup transmit path flow graph
55         fg.connect(self.ofdm_tx, self.amp)
56         gr.hier_block.__init__(self, fg, None, self.amp)
57
58     def set_tx_amplitude(self, ampl):
59         """
60         Sets the transmit amplitude sent to the USRP
61         @param: ampl 0 <= ampl < 32768.  Try 8000
62         """
63         self._tx_amplitude = max(0.0, min(ampl, 32767.0))
64         self.amp.set_k(self._tx_amplitude)
65         
66     def send_pkt(self, payload='', eof=False):
67         """
68         Calls the transmitter method to send a packet
69         """
70         return self.ofdm_tx.send_pkt(payload, eof)
71         
72     def add_options(normal, expert):
73         """
74         Adds transmitter-specific options to the Options Parser
75         """
76         normal.add_option("", "--tx-amplitude", type="eng_float", default=1, metavar="AMPL",
77                           help="set transmitter digital amplitude: 0 <= AMPL < 32768 [default=%default]")
78         normal.add_option("-v", "--verbose", action="store_true", default=False)
79         expert.add_option("", "--log", action="store_true", default=False,
80                           help="Log all parts of flow graph to file (CAUTION: lots of data)")
81
82     # Make a static method to call before instantiation
83     add_options = staticmethod(add_options)
84
85     def _print_verbage(self):
86         """
87         Prints information about the transmit path
88         """
89         print "Tx amplitude     %s"    % (self._tx_amplitude)
90