X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-cli.git;a=blobdiff_plain;f=options.c;h=d69ed7381e21fbe9402deda2b3c2f48620d0a0da;hp=b9e149433a0862426a23179558ccbb3eb6300461;hb=56fc0d6dbca2d46ff2a79275ef6307c4e38bf6a1;hpb=bf5d7c773e455e7dc5752716c82a475abe159ad0 diff --git a/options.c b/options.c index b9e1494..d69ed73 100644 --- a/options.c +++ b/options.c @@ -23,8 +23,10 @@ gboolean opt_version = FALSE; gboolean opt_list_supported = FALSE; +gboolean opt_list_supported_wiki = FALSE; gint opt_loglevel = SR_LOG_WARN; /* Show errors+warnings by default. */ gboolean opt_scan_devs = FALSE; +gboolean opt_dont_scan = FALSE; gboolean opt_wait_trigger = FALSE; gchar *opt_input_file = NULL; gchar *opt_output_file = NULL; @@ -50,6 +52,7 @@ gchar *opt_frames = NULL; gboolean opt_continuous = FALSE; gchar *opt_get = NULL; gboolean opt_set = FALSE; +gboolean opt_list_serial = FALSE; /* * Defines a callback function that generates an error if an @@ -102,6 +105,8 @@ static const GOptionEntry optargs[] = { "Show version", NULL}, {"list-supported", 'L', 0, G_OPTION_ARG_NONE, &opt_list_supported, "List supported devices/modules/decoders", NULL}, + {"list-supported-wiki", 0, 0, G_OPTION_ARG_NONE, &opt_list_supported_wiki, + "List supported decoders (MediaWiki)", NULL}, {"loglevel", 'l', 0, G_OPTION_ARG_INT, &opt_loglevel, "Set loglevel (5 is most verbose)", NULL}, {"driver", 'd', 0, G_OPTION_ARG_CALLBACK, &check_opt_drv, @@ -140,6 +145,8 @@ static const GOptionEntry optargs[] = { #endif {"scan", 0, 0, G_OPTION_ARG_NONE, &opt_scan_devs, "Scan for devices", NULL}, + {"dont-scan", 'D', 0, G_OPTION_ARG_NONE, &opt_dont_scan, + "Don't auto-scan (use -d spec only)", NULL}, {"show", 0, 0, G_OPTION_ARG_NONE, &opt_show, "Show device/format/decoder details", NULL}, {"time", 0, 0, G_OPTION_ARG_CALLBACK, &check_opt_time, @@ -152,6 +159,7 @@ static const GOptionEntry optargs[] = { "Sample continuously", NULL}, {"get", 0, 0, G_OPTION_ARG_CALLBACK, &check_opt_get, "Get device options only", NULL}, {"set", 0, 0, G_OPTION_ARG_NONE, &opt_set, "Set device options only", NULL}, + {"list-serial", 0, 0, G_OPTION_ARG_NONE, &opt_list_serial, "List available serial ports", NULL}, {NULL, 0, 0, 0, NULL, NULL, NULL} };