]> sigrok.org Git - sigrok-cli.git/commitdiff
Minor cosmetics, whitespace- and consistency fixes.
authorUwe Hermann <redacted>
Fri, 20 Mar 2015 18:38:33 +0000 (19:38 +0100)
committerUwe Hermann <redacted>
Sat, 21 Mar 2015 15:39:57 +0000 (16:39 +0100)
anykey.c
decode.c
device.c
input.c
options.c
parsers.c
session.c
show.c
sigrok-cli.h

index 4126518e8a0801dc3700bdc3c0e86582668b47fd..893358616fa6ba992274a8e2fdb324e33241abc8 100644 (file)
--- a/anykey.c
+++ b/anykey.c
@@ -38,6 +38,7 @@ static struct termios term_orig;
 static int received_anykey(int fd, int revents, void *cb_data)
 {
        struct sr_session *session;
+
        (void)fd;
        (void)revents;
 
index 2e831f74ee1985a735e3da027a933ea2d3328bca..09b43f93d3b48c4da38f90505c141ea8823c26a1 100644 (file)
--- a/decode.c
+++ b/decode.c
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include <stdlib.h>
-#include <string.h>
 #include "sigrok-cli.h"
 #include "config.h"
+#include <stdlib.h>
+#include <string.h>
 #include <glib.h>
 
 #ifdef HAVE_SRD
@@ -109,7 +109,8 @@ static GHashTable *extract_channel_map(struct srd_decoder *dec, GHashTable *hash
        return channel_map;
 }
 
-/* Register the given PDs for this session.
+/*
+ * Register the given PDs for this session.
  * Accepts a string of the form: "spi:sck=3:sdata=4,spi:sck=3:sdata=5"
  * That will instantiate two SPI decoders on the clock but different data
  * lines.
@@ -180,7 +181,8 @@ int register_pds(const char *opt_pds, char *opt_pd_annotations)
                        channels = NULL;
                }
 
-               /* If no annotation list was specified, add them all in now.
+               /*
+                * If no annotation list was specified, add them all in now.
                 * This will be pared down later to leave only the last PD
                 * in the stack.
                 */
@@ -305,7 +307,8 @@ int setup_pd_stack(char *opt_pds, char *opt_pd_stack, char *opt_pd_annotations)
                        if ((ret = srd_inst_stack(srd_sess, di_from, di_to)) != SRD_OK)
                                return 1;
 
-                       /* Don't show annotation from this PD. Only the last PD in
+                       /*
+                        * Don't show annotation from this PD. Only the last PD in
                         * the stack will be left on the annotation list (unless
                         * the annotation list was specifically provided).
                         */
@@ -453,7 +456,6 @@ void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data)
        char **ann_descr;
        gboolean show;
 
-       /* 'cb_data' is not used in this specific callback. */
        (void)cb_data;
 
        if (!pd_ann_visible)
@@ -500,8 +502,6 @@ void show_pd_annotations(struct srd_proto_data *pdata, void *cb_data)
 
 void show_pd_meta(struct srd_proto_data *pdata, void *cb_data)
 {
-
-       /* 'cb_data' is not used in this specific callback. */
        (void)cb_data;
 
        if (!g_hash_table_lookup_extended(pd_meta_visible,
@@ -523,7 +523,6 @@ void show_pd_binary(struct srd_proto_data *pdata, void *cb_data)
        gpointer classp;
        int class;
 
-       /* 'cb_data' is not used in this specific callback. */
        (void)cb_data;
 
        if (!g_hash_table_lookup_extended(pd_binary_visible,
@@ -542,4 +541,3 @@ void show_pd_binary(struct srd_proto_data *pdata, void *cb_data)
        fflush(stdout);
 }
 #endif
-
index 2a5d14a2a7267138498c1d1942e23fb2de02a0ec..48646b5933de9cce80ef752976a22b7fa3281484 100644 (file)
--- a/device.c
+++ b/device.c
@@ -86,4 +86,3 @@ struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi)
 
        return NULL;
 }
-
diff --git a/input.c b/input.c
index 4f51e11553e3bb68c1c714610b28f5b7e3fb2922..9d7bf626cd24a2341afaa1d29f83b381deadb4f4 100644 (file)
--- a/input.c
+++ b/input.c
@@ -28,7 +28,7 @@
 #include <string.h>
 #include <glib.h>
 
-#define BUFSIZE 16384
+#define BUFSIZE (16 * 1024)
 
 static void load_input_file_module(void)
 {
@@ -111,7 +111,7 @@ static void load_input_file_module(void)
        sr_session_datafeed_callback_add(session, &datafeed_in, NULL);
 
        got_sdi = FALSE;
-       while(TRUE) {
+       while (TRUE) {
                g_string_truncate(buf, 0);
                len = read(fd, buf->str, BUFSIZE);
                if (len < 0)
@@ -124,7 +124,7 @@ static void load_input_file_module(void)
                        break;
 
                sdi = sr_input_dev_inst_get(in);
-               if(!got_sdi && sdi) {
+               if (!got_sdi && sdi) {
                        /* First time we got a valid sdi. */
                        if (select_channels(sdi) != SR_OK)
                                return;
@@ -135,7 +135,6 @@ static void load_input_file_module(void)
                        }
                        got_sdi = TRUE;
                }
-
        }
        sr_input_end(in);
        sr_input_free(in);
index 9a0bce6859306562c849a722f871577557663d07..32787e5a227f4b763a28fdb51e942c04fb5b9417 100644 (file)
--- a/options.c
+++ b/options.c
@@ -49,8 +49,10 @@ gchar *opt_continuous = NULL;
 gchar *opt_get = NULL;
 gchar *opt_set = NULL;
 
-/* defines a callback function that generates
-   an error if an option occurs twice */
+/*
+ * Defines a callback function that generates an error if an
+ * option occurs twice.
+ */
 #define CHECK_ONCE(option) \
 static gboolean check_ ## option                                          \
        (const gchar *option_name, const gchar *value,                    \
@@ -151,8 +153,10 @@ static const GOptionEntry optargs[] = {
        {NULL, 0, 0, 0, NULL, NULL, NULL}
 };
 
-/* Parses the command line and sets all the 'opt_...' variables.
-   Returns zero on success, non-zero otherwise. */
+/*
+ * Parses the command line and sets all the 'opt_...' variables.
+ * Returns zero on success, non-zero otherwise.
+ */
 int parse_options(int argc, char **argv)
 {
        GError *error = NULL;
index 35545e02e7d59d3080fc36b98486d02491fd08a2..f0e2a7f8ebccb10073a44ecb8968e0a008336294 100644 (file)
--- a/parsers.c
+++ b/parsers.c
@@ -67,10 +67,12 @@ GSList *parse_channelstring(struct sr_dev_inst *sdi, const char *channelstring)
                        break;
                }
                if (strchr(tokens[i], '-')) {
-                       /* A range of channels in the form a-b. This will only work
+                       /*
+                        * A range of channels in the form a-b. This will only work
                         * if the channels are named as numbers -- so every channel
                         * in the range must exist as a channel name string in the
-                        * device. */
+                        * device.
+                        */
                        range = g_strsplit(tokens[i], "-", 2);
                        if (!range[0] || !range[1] || range[2]) {
                                /* Need exactly two arguments. */
@@ -447,4 +449,3 @@ int parse_driver(char *arg, struct sr_dev_driver **driver, GSList **drvopts)
 
        return TRUE;
 }
-
index 090fdce8f32fea1b408f25e6199ff446d2472db1..aa30266f975e9447a72a8dafa4f7b21fcf05f42a 100644 (file)
--- a/session.c
+++ b/session.c
@@ -308,8 +308,10 @@ void datafeed_in(const struct sr_dev_inst *sdi,
                        if (!out || (out->len == 0
                                        && !opt_output_format
                                        && packet->type == SR_DF_ANALOG)) {
-                               /* The user didn't specify an output module,
-                                * but needs to see this analog data. */
+                               /*
+                                * The user didn't specify an output module,
+                                * but needs to see this analog data.
+                                */
                                sr_output_send(oa, packet, &out);
                        }
                        if (out && out->len > 0) {
@@ -321,8 +323,10 @@ void datafeed_in(const struct sr_dev_inst *sdi,
                }
        }
 
-       /* SR_DF_END needs to be handled after the output module's receive()
-        * is called, so it can properly clean up that module. */
+       /*
+        * SR_DF_END needs to be handled after the output module's receive()
+        * is called, so it can properly clean up that module.
+        */
        if (packet->type == SR_DF_END) {
                g_debug("cli: Received SR_DF_END.");
 
@@ -611,8 +615,10 @@ void run_session(void)
                }
                if (maybe_config_list(driver, sdi, NULL, SR_CONF_LIMIT_SAMPLES,
                                &gvar) == SR_OK) {
-                       /* The device has no compression, or compression is turned
-                        * off, and publishes its sample memory size. */
+                       /*
+                        * The device has no compression, or compression is turned
+                        * off, and publishes its sample memory size.
+                        */
                        g_variant_get(gvar, "(tt)", &min_samples, &max_samples);
                        g_variant_unref(gvar);
                        if (limit_samples < min_samples) {
@@ -667,4 +673,3 @@ void run_session(void)
        sr_session_destroy(session);
 
 }
-
diff --git a/show.c b/show.c
index d43c716ba52d4bde79af35b89af38d885a7c7268..f0dbbf4ab89421d240e1c209cb9b4f77b144375d 100644 (file)
--- a/show.c
+++ b/show.c
@@ -308,8 +308,10 @@ void show_dev_detail(void)
                return;
        }
 
-       /* Selected channels and channel group may affect which options are
-        * returned, or which values for them. */
+       /*
+        * Selected channels and channel group may affect which options are
+        * returned, or which values for them.
+        */
        select_channels(sdi);
        channel_group = select_channel_group(sdi);
 
@@ -356,7 +358,7 @@ void show_dev_detail(void)
                                        &num_elements, sizeof(int32_t));
                        printf("    Supported triggers: ");
                        for (i = 0; i < num_elements; i++) {
-                               switch(int32[i]) {
+                               switch (int32[i]) {
                                case SR_TRIGGER_ZERO:
                                        c = '0';
                                        break;
@@ -390,12 +392,14 @@ void show_dev_detail(void)
 
                } else if (key == SR_CONF_LIMIT_SAMPLES
                                && config_key_has_cap(driver, sdi, NULL, key, SR_CONF_LIST)) {
-                       /* If implemented in config_list(), this denotes the
+                       /*
+                        * If implemented in config_list(), this denotes the
                         * maximum number of samples a device can send. This
                         * really applies only to logic analyzers, and then
                         * only to those that don't support compression, or
                         * have it turned off by default. The values returned
-                        * are the low/high limits. */
+                        * are the low/high limits.
+                        */
                        if (sr_config_list(driver, sdi, channel_group, key,
                                        &gvar) == SR_OK) {
                                g_variant_get(gvar, "(tt)", &low, &high);
index 897d5b496266575c3293b4817d21756816d8666f..d7b9d9cee954f7fcff9f5c44ca43e9594a3a7f54 100644 (file)
@@ -28,7 +28,7 @@
 #include <libsigrok/libsigrok.h>
 
 #define DEFAULT_OUTPUT_FORMAT "bits:width=64"
-#define SAVE_CHUNK_SIZE 524288
+#define SAVE_CHUNK_SIZE (512 * 1024)
 
 /* main.c */
 int select_channels(struct sr_dev_inst *sdi);