merged trondeau/digital-wip2 r4193:4730 into trunk - improves digital receiver and...
[debian/gnuradio] / gnuradio-examples / python / hier / digital / 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, blks2
23 from gnuradio import usrp
24 from gnuradio import eng_notation
25
26 import copy
27 import sys
28
29 # from current dir
30 from pick_bitrate import pick_tx_bitrate
31
32 # /////////////////////////////////////////////////////////////////////////////
33 #                              transmit path
34 # /////////////////////////////////////////////////////////////////////////////
35
36 class transmit_path(gr.hier_block2): 
37     def __init__(self, modulator_class, options):
38         '''
39         See below for what options should hold
40         '''
41         
42         gr.hier_block2.__init__(self, "transmit_path",
43                                 gr.io_signature(0,0,0), # Input signature
44                                 gr.io_signature(0,0,0)) # Output signature
45
46         options = copy.copy(options)    # make a copy so we can destructively modify
47
48         self._verbose            = options.verbose
49         self._tx_freq            = options.tx_freq         # tranmitter's center frequency
50         self._tx_amplitude       = options.tx_amplitude    # digital amplitude sent to USRP
51         self._tx_subdev_spec     = options.tx_subdev_spec  # daughterboard to use
52         self._bitrate            = options.bitrate         # desired bit rate
53         self._interp             = options.interp          # interpolating rate for the USRP (prelim)
54         self._samples_per_symbol = options.samples_per_symbol  # desired samples/baud
55         self._fusb_block_size    = options.fusb_block_size # usb info for USRP
56         self._fusb_nblocks       = options.fusb_nblocks    # usb info for USRP
57
58         self._modulator_class = modulator_class         # the modulator_class we are using
59     
60         if self._tx_freq is None:
61             sys.stderr.write("-f FREQ or --freq FREQ or --tx-freq FREQ must be specified\n")
62             raise SystemExit
63
64         # Set up USRP sink; also adjusts interp, samples_per_symbol, and bitrate
65         self._setup_usrp_sink()
66
67         # copy the final answers back into options for use by modulator
68         options.samples_per_symbol = self._samples_per_symbol
69         options.bitrate = self._bitrate
70         options.interp = self._interp
71
72         # Get mod_kwargs
73         mod_kwargs = self._modulator_class.extract_kwargs_from_options(options)
74
75         # Set center frequency of USRP
76         ok = self.set_freq(self._tx_freq)
77         if not ok:
78             print "Failed to set Tx frequency to %s" % (eng_notation.num_to_str(self._tx_freq),)
79             raise ValueError
80     
81         # transmitter
82         self.packet_transmitter = \
83              blks2.mod_pkts(self._modulator_class(**mod_kwargs),
84                             access_code=None,
85                             msgq_limit=4,
86                             pad_for_usrp=True)
87
88         # Set the USRP for maximum transmit gain
89         # (Note that on the RFX cards this is a nop.)
90         self.set_gain(self.subdev.gain_range()[0])
91
92         self.amp = gr.multiply_const_cc(1)
93         self.set_tx_amplitude(self._tx_amplitude)
94
95         # enable Auto Transmit/Receive switching
96         self.set_auto_tr(True)
97
98         # Display some information about the setup
99         if self._verbose:
100             self._print_verbage()
101
102         # Define the components
103         self.define_component("packet_transmitter", self.packet_transmitter)
104         self.define_component("amp", self.amp)
105         self.define_component("usrp", self.u)
106
107         # Connect components in the flowgraph; set amp component to the output of this block
108         self.connect("packet_transmitter", 0, "amp", 0)
109         self.connect("amp", 0, "usrp", 0)
110
111     def _setup_usrp_sink(self):
112         """
113         Creates a USRP sink, determines the settings for best bitrate,
114         and attaches to the transmitter's subdevice.
115         """
116         self.u = usrp.sink_c(fusb_block_size=self._fusb_block_size,
117                              fusb_nblocks=self._fusb_nblocks)
118         dac_rate = self.u.dac_rate();
119
120         # derive values of bitrate, samples_per_symbol, and interp from desired info
121         (self._bitrate, self._samples_per_symbol, self._interp) = \
122             pick_tx_bitrate(self._bitrate, self._modulator_class.bits_per_symbol(),
123                             self._samples_per_symbol, self._interp, dac_rate)
124         
125         self.u.set_interp_rate(self._interp)
126
127         # determine the daughterboard subdevice we're using
128         if self._tx_subdev_spec is None:
129             self._tx_subdev_spec = usrp.pick_tx_subdevice(self.u)
130         self.u.set_mux(usrp.determine_tx_mux_value(self.u, self._tx_subdev_spec))
131         self.subdev = usrp.selected_subdev(self.u, self._tx_subdev_spec)
132
133
134     def set_freq(self, target_freq):
135         """
136         Set the center frequency we're interested in.
137
138         @param target_freq: frequency in Hz
139         @rypte: bool
140
141         Tuning is a two step process.  First we ask the front-end to
142         tune as close to the desired frequency as it can.  Then we use
143         the result of that operation and our target_frequency to
144         determine the value for the digital up converter.
145         """
146         r = self.u.tune(self.subdev._which, self.subdev, target_freq)
147         if r:
148             return True
149
150         return False
151         
152     def set_gain(self, gain):
153         """
154         Sets the analog gain in the USRP
155         """
156         self.gain = gain
157         self.subdev.set_gain(gain)
158
159     def set_tx_amplitude(self, ampl):
160         """
161         Sets the transmit amplitude sent to the USRP
162         @param: ampl 0 <= ampl < 32768.  Try 8000
163         """
164         self._tx_amplitude = max(0.0, min(ampl, 32767.0))
165         self.amp.set_k(self._tx_amplitude)
166         
167     def set_auto_tr(self, enable):
168         """
169         Turns on auto transmit/receive of USRP daughterboard (if exits; else ignored)
170         """
171         return self.subdev.set_auto_tr(enable)
172         
173     def send_pkt(self, payload='', eof=False):
174         """
175         Calls the transmitter method to send a packet
176         """
177         return self.packet_transmitter.send_pkt(payload, eof)
178         
179     def bitrate(self):
180         return self._bitrate
181
182     def samples_per_symbol(self):
183         return self._samples_per_symbol
184
185     def interp(self):
186         return self._interp
187
188     def add_options(normal, expert):
189         """
190         Adds transmitter-specific options to the Options Parser
191         """
192         add_freq_option(normal)
193         if not normal.has_option('--bitrate'):
194             normal.add_option("-r", "--bitrate", type="eng_float", default=None,
195                               help="specify bitrate.  samples-per-symbol and interp/decim will be derived.")
196         normal.add_option("-T", "--tx-subdev-spec", type="subdev", default=None,
197                           help="select USRP Tx side A or B")
198         normal.add_option("", "--tx-amplitude", type="eng_float", default=12000, metavar="AMPL",
199                           help="set transmitter digital amplitude: 0 <= AMPL < 32768 [default=%default]")
200         normal.add_option("-v", "--verbose", action="store_true", default=False)
201
202         expert.add_option("-S", "--samples-per-symbol", type="int", default=None,
203                           help="set samples/symbol [default=%default]")
204         expert.add_option("", "--tx-freq", type="eng_float", default=None,
205                           help="set transmit frequency to FREQ [default=%default]", metavar="FREQ")
206         expert.add_option("-i", "--interp", type="intx", default=None,
207                           help="set fpga interpolation rate to INTERP [default=%default]")
208         expert.add_option("", "--log", action="store_true", default=False,
209                           help="Log all parts of flow graph to file (CAUTION: lots of data)")
210
211     # Make a static method to call before instantiation
212     add_options = staticmethod(add_options)
213
214     def _print_verbage(self):
215         """
216         Prints information about the transmit path
217         """
218         print "Using TX d'board %s"    % (self.subdev.side_and_name(),)
219         print "Tx amplitude     %s"    % (self._tx_amplitude)
220         print "modulation:      %s"    % (self._modulator_class.__name__)
221         print "bitrate:         %sb/s" % (eng_notation.num_to_str(self._bitrate))
222         print "samples/symbol:  %3d"   % (self._samples_per_symbol)
223         print "interp:          %3d"   % (self._interp)
224         print "Tx Frequency:    %s"    % (eng_notation.num_to_str(self._tx_freq))
225         
226
227 def add_freq_option(parser):
228     """
229     Hackery that has the -f / --freq option set both tx_freq and rx_freq
230     """
231     def freq_callback(option, opt_str, value, parser):
232         parser.values.rx_freq = value
233         parser.values.tx_freq = value
234
235     if not parser.has_option('--freq'):
236         parser.add_option('-f', '--freq', type="eng_float",
237                           action="callback", callback=freq_callback,
238                           help="set Tx and/or Rx frequency to FREQ [default=%default]",
239                           metavar="FREQ")