Merge r6461:6464 from jcorgan/t162-staging into trunk.
[debian/gnuradio] / gnuradio-examples / python / 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 class my_top_block(gr.top_block):
42     def __init__(self, demodulator, rx_callback, options):
43         gr.top_block.__init__(self)
44         self.rxpath = receive_path(demodulator, rx_callback, options) 
45         self.connect(self.rxpath)
46
47 # /////////////////////////////////////////////////////////////////////////////
48 #                                   main
49 # /////////////////////////////////////////////////////////////////////////////
50
51 global n_rcvd, n_right
52
53 def main():
54     global n_rcvd, n_right
55
56     n_rcvd = 0
57     n_right = 0
58     
59     def rx_callback(ok, payload):
60         global n_rcvd, n_right
61         (pktno,) = struct.unpack('!H', payload[0:2])
62         n_rcvd += 1
63         if ok:
64             n_right += 1
65
66         print "ok = %5s  pktno = %4d  n_rcvd = %4d  n_right = %4d" % (
67             ok, pktno, n_rcvd, n_right)
68
69
70     demods = modulation_utils.type_1_demods()
71
72     # Create Options Parser:
73     parser = OptionParser (option_class=eng_option, conflict_handler="resolve")
74     expert_grp = parser.add_option_group("Expert")
75
76     parser.add_option("-m", "--modulation", type="choice", choices=demods.keys(), 
77                       default='gmsk',
78                       help="Select modulation from: %s [default=%%default]"
79                             % (', '.join(demods.keys()),))
80
81     receive_path.add_options(parser, expert_grp)
82
83     for mod in demods.values():
84         mod.add_options(expert_grp)
85
86     fusb_options.add_options(expert_grp)
87     (options, args) = parser.parse_args ()
88
89     if len(args) != 0:
90         parser.print_help(sys.stderr)
91         sys.exit(1)
92
93     if options.rx_freq is None:
94         sys.stderr.write("You must specify -f FREQ or --freq FREQ\n")
95         parser.print_help(sys.stderr)
96         sys.exit(1)
97
98
99     # build the graph
100     tb = my_top_block(demods[options.modulation], rx_callback, options)
101
102     r = gr.enable_realtime_scheduling()
103     if r != gr.RT_OK:
104         print "Warning: Failed to enable realtime scheduling."
105
106     tb.start()        # start flow graph
107     tb.wait()         # wait for it to finish
108
109 if __name__ == '__main__':
110     try:
111         main()
112     except KeyboardInterrupt:
113         pass