2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program 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.
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 St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
24 #include <libsigrok/libsigrok.h>
29 #include <QtGui/QApplication>
32 #include "pv/mainwindow.h"
43 " -V, --version Show release version\n"
44 " -h, -?, --help Show help option\n"
45 "\n", PV_BIN_NAME, PV_DESCRIPTION);
48 int main(int argc, char *argv[])
51 struct sr_context *sr_ctx = NULL;
53 QApplication a(argc, argv);
55 // Set some application metadata
56 QApplication::setApplicationVersion(PV_VERSION_STRING);
57 QApplication::setApplicationName("PulseView");
58 QApplication::setOrganizationDomain("http://www.sigrok.org");
62 static const struct option long_options[] = {
63 {"version", no_argument, 0, 'V'},
64 {"help", no_argument, 0, 'h'},
68 const char c = getopt_long(argc, argv,
69 "Vh?", long_options, NULL);
76 fprintf(stderr, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
86 // Initialise libsigrok
87 if (sr_init(&sr_ctx) != SR_OK) {
88 qDebug() << "ERROR: libsigrok init failed.";
92 // Initialise libsigrokdecode
93 if (srd_init(NULL) == SRD_OK) {
95 // Load the protocol decoders
96 srd_decoder_load_all();
98 // Initialize all libsigrok drivers
99 sr_dev_driver **const drivers = sr_driver_list();
100 for (sr_dev_driver **driver = drivers; *driver; driver++) {
101 if (sr_driver_init(sr_ctx, *driver) != SR_OK) {
102 qDebug("Failed to initialize driver %s",
110 // Initialise the main window
114 // Run the application
118 // Destroy libsigrokdecode and libsigrok
122 qDebug() << "ERROR: libsigrokdecode init failed.";