Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-examples / python / digital / benchmark_tx.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2005,2006,2007,2009 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 from gnuradio import gr, gru, modulation_utils
24 from gnuradio import usrp
25 from gnuradio import eng_notation
26 from gnuradio.eng_option import eng_option
27 from optparse import OptionParser
28
29 import random, time, struct, sys
30
31 # from current dir
32 import usrp_transmit_path
33
34 #import os 
35 #print os.getpid()
36 #raw_input('Attach and press enter')
37
38 class my_top_block(gr.top_block):
39     def __init__(self, modulator, options):
40         gr.top_block.__init__(self)
41
42         self.txpath = usrp_transmit_path.usrp_transmit_path(modulator, options)
43
44         self.connect(self.txpath)
45
46 # /////////////////////////////////////////////////////////////////////////////
47 #                                   main
48 # /////////////////////////////////////////////////////////////////////////////
49
50 def main():
51
52     def send_pkt(payload='', eof=False):
53         return tb.txpath.send_pkt(payload, eof)
54
55     def rx_callback(ok, payload):
56         print "ok = %r, payload = '%s'" % (ok, payload)
57
58     mods = modulation_utils.type_1_mods()
59
60     parser = OptionParser(option_class=eng_option, conflict_handler="resolve")
61     expert_grp = parser.add_option_group("Expert")
62
63     parser.add_option("-m", "--modulation", type="choice", choices=mods.keys(),
64                       default='gmsk',
65                       help="Select modulation from: %s [default=%%default]"
66                             % (', '.join(mods.keys()),))
67
68     parser.add_option("-s", "--size", type="eng_float", default=1500,
69                       help="set packet size [default=%default]")
70     parser.add_option("-M", "--megabytes", type="eng_float", default=1.0,
71                       help="set megabytes to transmit [default=%default]")
72     parser.add_option("","--discontinuous", action="store_true", default=False,
73                       help="enable discontinous transmission (bursts of 5 packets)")
74     parser.add_option("","--from-file", default=None,
75                       help="use file for packet contents")
76
77     usrp_transmit_path.add_options(parser, expert_grp)
78
79     for mod in mods.values():
80         mod.add_options(expert_grp)
81
82     (options, args) = parser.parse_args ()
83
84     if len(args) != 0:
85         parser.print_help()
86         sys.exit(1)
87
88     if options.tx_freq is None:
89         sys.stderr.write("You must specify -f FREQ or --freq FREQ\n")
90         parser.print_help(sys.stderr)
91         sys.exit(1)
92
93     if options.from_file is not None:
94         source_file = open(options.from_file, 'r')
95
96     # build the graph
97     tb = my_top_block(mods[options.modulation], options)
98
99     r = gr.enable_realtime_scheduling()
100     if r != gr.RT_OK:
101         print "Warning: failed to enable realtime scheduling"
102
103     tb.start()                       # start flow graph
104         
105     # generate and send packets
106     nbytes = int(1e6 * options.megabytes)
107     n = 0
108     pktno = 0
109     pkt_size = int(options.size)
110
111     while n < nbytes:
112         if options.from_file is None:
113             data = (pkt_size - 2) * chr(pktno & 0xff) 
114         else:
115             data = source_file.read(pkt_size - 2)
116             if data == '':
117                 break;
118
119         payload = struct.pack('!H', pktno & 0xffff) + data
120         send_pkt(payload)
121         n += len(payload)
122         sys.stderr.write('.')
123         if options.discontinuous and pktno % 5 == 4:
124             time.sleep(1)
125         pktno += 1
126         
127     send_pkt(eof=True)
128
129     tb.wait()                       # wait for it to finish
130
131 if __name__ == '__main__':
132     try:
133         main()
134     except KeyboardInterrupt:
135         pass