]> sigrok.org Git - sigrok-meter.git/blame - sigrok-meter
Add a '--config' command line option.
[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
739a1d54 29default_drivers = [('demo:analog_channels=4', 'samplerate=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('''\
739a1d54
JS
36 The DRIVER string is the same as for sigrok-cli(1). The nth
37 CONFIG is applied to the nth DRIVER. If there are more drivers
38 than configs, the remaining drivers use the default configuration.
1f199679
JS
39
40 examples:
41
42 %(prog)s --driver tecpel-dmm-8061-ser:conn=/dev/ttyUSB0
43
44 %(prog)s --driver uni-t-ut61e:conn=1a86.e008
739a1d54
JS
45
46 %(prog)s --driver demo:analog_channels=1 \\
47 --config samplerate=10
1f199679
JS
48 '''),
49 formatter_class=argparse.RawDescriptionHelpFormatter)
50
51 parser.add_argument('-d', '--driver',
52 action='append',
739a1d54 53 default=[],
1f199679 54 help='The driver to use')
739a1d54
JS
55 parser.add_argument('-c', '--config',
56 action='append',
57 default=[],
58 help='Specify device configuration options')
1f199679
JS
59 parser.add_argument('-l', '--loglevel',
60 type=int,
4ce8c1c0 61 default=default_loglevel,
1f199679
JS
62 help='Set loglevel (5 is most verbose)')
63 parser.add_argument('--pyside',
64 action='store_true',
65 default=False,
66 help='Force use of PySide (default is to use PyQt4)')
67 args = parser.parse_args()
68
739a1d54
JS
69 if len(args.config) > len(args.driver):
70 sys.exit('error: more configurations than drivers given')
71
72 # merge drivers and configurations into a list of tuples
73 setattr(args, 'drivers', [])
4ce8c1c0 74 if not args.driver:
739a1d54
JS
75 args.drivers = default_drivers
76 sys.stderr.write('no driver given, using demo driver\n')
77 if args.driver:
78 args.config.extend([''] * (len(args.driver) - len(args.config)))
79 args.drivers = zip(args.driver, args.config)
80 del args.driver
81 del args.config
1f199679 82
4ce8c1c0 83 return args
1f199679
JS
84
85if __name__ == '__main__':
1f199679
JS
86 args = parse_cli()
87
48723bbb 88 import qtcompat
4ce8c1c0 89 qtcompat.load_modules(args.pyside)
48723bbb
JS
90 QtCore = qtcompat.QtCore
91 QtGui = qtcompat.QtGui
92 import mainwindow
58d308d1 93
e65cc368 94 context = sr.Context_create()
4ce8c1c0
JS
95 try:
96 loglevel = sr.LogLevel.get(args.loglevel)
97 context.log_level = loglevel
98 except:
99 sys.exit('error: invalid log level')
73f2129a
JS
100
101 app = QtGui.QApplication([])
739a1d54 102 s = mainwindow.MainWindow(context, args.drivers)
73f2129a
JS
103 s.show()
104
e65cc368 105 sys.exit(app.exec_())