Updated license from GPL version 2 or later to GPL version 3 or later.
[debian/gnuradio] / gnuradio-examples / python / hier / digital / benchmark_rx.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2005,2006,2007 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
30 import struct
31 import sys
32
33 # from current dir
34 from receive_path import receive_path
35 import fusb_options
36
37 #import os
38 #print os.getpid()
39 #raw_input('Attach and press enter: ')
40
41 # /////////////////////////////////////////////////////////////////////////////
42 #                                   main
43 # /////////////////////////////////////////////////////////////////////////////
44
45 global n_rcvd, n_right
46
47 def main():
48     global n_rcvd, n_right
49
50     n_rcvd = 0
51     n_right = 0
52     
53     def rx_callback(ok, payload):
54         global n_rcvd, n_right
55         (pktno,) = struct.unpack('!H', payload[0:2])
56         n_rcvd += 1
57         if ok:
58             n_right += 1
59
60         print "ok = %5s  pktno = %4d  n_rcvd = %4d  n_right = %4d" % (
61             ok, pktno, n_rcvd, n_right)
62
63
64     demods = modulation_utils.type_1_demods()
65
66     # Create Options Parser:
67     parser = OptionParser (option_class=eng_option, conflict_handler="resolve")
68     expert_grp = parser.add_option_group("Expert")
69
70     parser.add_option("-m", "--modulation", type="choice", choices=demods.keys(), 
71                       default='gmsk',
72                       help="Select modulation from: %s [default=%%default]"
73                             % (', '.join(demods.keys()),))
74
75     receive_path.add_options(parser, expert_grp)
76
77     for mod in demods.values():
78         mod.add_options(expert_grp)
79
80     fusb_options.add_options(expert_grp)
81     (options, args) = parser.parse_args ()
82
83     if len(args) != 0:
84         parser.print_help(sys.stderr)
85         sys.exit(1)
86
87     if options.rx_freq is None:
88         sys.stderr.write("You must specify -f FREQ or --freq FREQ\n")
89         parser.print_help(sys.stderr)
90         sys.exit(1)
91
92     r = gr.enable_realtime_scheduling()
93     if r != gr.RT_OK:
94         print "Warning: Failed to enable realtime scheduling."
95
96     # Create an instance of a hierarchical block
97     top_block = receive_path(demods[options.modulation], rx_callback, options)
98     
99     # Create an instance of a runtime, passing it the top block
100     runtime = gr.runtime(top_block)
101     runtime.start()
102
103     runtime.wait()         # wait for it to finish
104
105 if __name__ == '__main__':
106     try:
107         main()
108     except KeyboardInterrupt:
109         pass