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