probe for the usrp2
[debian/gnuradio] / grc / scripts / grc
1 #!/usr/bin/env python
2 """
3 Copyright 2009 Free Software Foundation, Inc.
4 This file is part of GNU Radio
5
6 GNU Radio Companion is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 GNU Radio Companion 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 this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
19 """
20
21 import pygtk
22 pygtk.require('2.0')
23 import gtk
24
25 from gnuradio.grc.platforms.base.Constants import VERSION
26 from optparse import OptionParser
27
28 if __name__ == "__main__":
29         usage = 'usage: %prog [options] [saved flow graphs]'
30         version = """
31 GNU Radio Companion %s
32
33 This program is part of GNU Radio
34 GRC comes with ABSOLUTELY NO WARRANTY.
35 This is free software,
36 and you are welcome to redistribute it.
37 """%VERSION
38         parser = OptionParser(usage=usage, version=version)
39         (options, args) = parser.parse_args()
40         from gnuradio.grc.platforms.python.Platform import Platform
41         from gnuradio.grc.gui.ActionHandler import ActionHandler
42         #setup icon using icon theme
43         try: gtk.window_set_default_icon(gtk.IconTheme().load_icon('gnuradio-grc', 256, 0))
44         except: pass
45         ActionHandler(args, Platform())
46