]> sigrok.org Git - sigrok-meter.git/blame - sigrok-meter
Shorten argument parsing.
[sigrok-meter.git] / sigrok-meter
CommitLineData
5add80f6
JS
1#!/usr/bin/env python
2
c09ca11b
UH
3##
4## This file is part of the sigrok-meter project.
5##
6## Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.de>
73f2129a 7## Copyright (C) 2014 Jens Steinhauser <jens.steinhauser@gmail.com>
c09ca11b
UH
8##
9## This program is free software; you can redistribute it and/or modify
10## it under the terms of the GNU General Public License as published by
11## the Free Software Foundation; either version 2 of the License, or
12## (at your option) any later version.
13##
14## This program is distributed in the hope that it will be useful,
15## but WITHOUT ANY WARRANTY; without even the implied warranty of
16## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17## GNU General Public License for more details.
18##
19## You should have received a copy of the GNU General Public License
20## along with this program; if not, write to the Free Software
21## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22##
23
782f5926 24import argparse
efdef4fa 25import sigrok.core as sr
782f5926 26import sys
f94bb73f 27import textwrap
13e332b7 28
dab07392 29default_drivers = ['demo:analog_channels=4']
4ce8c1c0 30default_loglevel = 2
782f5926 31
1f199679
JS
32def parse_cli():
33 parser = argparse.ArgumentParser(
34 description='Simple sigrok GUI for multimeters and dataloggers.',
35 epilog=textwrap.dedent('''\
36 The DRIVER string is the same as for sigrok-cli(1).
37
38 examples:
39
40 %(prog)s --driver tecpel-dmm-8061-ser:conn=/dev/ttyUSB0
41
42 %(prog)s --driver uni-t-ut61e:conn=1a86.e008
43 '''),
44 formatter_class=argparse.RawDescriptionHelpFormatter)
45
46 parser.add_argument('-d', '--driver',
47 action='append',
48 help='The driver to use')
49 parser.add_argument('-l', '--loglevel',
50 type=int,
4ce8c1c0 51 default=default_loglevel,
1f199679
JS
52 help='Set loglevel (5 is most verbose)')
53 parser.add_argument('--pyside',
54 action='store_true',
55 default=False,
56 help='Force use of PySide (default is to use PyQt4)')
57 args = parser.parse_args()
58
4ce8c1c0
JS
59 if not args.driver:
60 args.driver = default_drivers
1f199679 61
4ce8c1c0 62 return args
1f199679
JS
63
64if __name__ == '__main__':
1f199679
JS
65 args = parse_cli()
66
48723bbb 67 import qtcompat
4ce8c1c0 68 qtcompat.load_modules(args.pyside)
48723bbb
JS
69 QtCore = qtcompat.QtCore
70 QtGui = qtcompat.QtGui
71 import mainwindow
58d308d1 72
e65cc368 73 context = sr.Context_create()
4ce8c1c0
JS
74 try:
75 loglevel = sr.LogLevel.get(args.loglevel)
76 context.log_level = loglevel
77 except:
78 sys.exit('error: invalid log level')
73f2129a
JS
79
80 app = QtGui.QApplication([])
4ce8c1c0 81 s = mainwindow.MainWindow(context, args.driver)
73f2129a
JS
82 s.show()
83
e65cc368 84 sys.exit(app.exec_())