]> sigrok.org Git - sigrok-cli.git/blobdiff - options.c
show: print list of available serial ports
[sigrok-cli.git] / options.c
index 3ec4414ba8792abd84579a78ff3395861df033db..d69ed7381e21fbe9402deda2b3c2f48620d0a0da 100644 (file)
--- a/options.c
+++ b/options.c
@@ -52,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
@@ -158,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}
 };