]> sigrok.org Git - libsigrok.git/commitdiff
Remove some unneeded double-spaces.
authorUwe Hermann <redacted>
Mon, 29 Aug 2016 15:48:18 +0000 (17:48 +0200)
committerUwe Hermann <redacted>
Mon, 29 Aug 2016 19:51:27 +0000 (21:51 +0200)
(also perform some other minor whitespace fixes while at it)

85 files changed:
src/dmm/bm25x.c
src/dmm/dtm0660.c
src/dmm/fs9721.c
src/dmm/fs9922.c
src/dmm/metex14.c
src/dmm/rs9lcd.c
src/dmm/ut71x.c
src/dmm/vc870.c
src/drivers.c
src/hardware/agilent-dmm/agilent-dmm.h
src/hardware/agilent-dmm/sched.c
src/hardware/appa-55ii/protocol.c
src/hardware/appa-55ii/protocol.h
src/hardware/brymen-bm86x/protocol.c
src/hardware/cem-dt-885x/protocol.c
src/hardware/colead-slm/protocol.c
src/hardware/conrad-digi-35-cpu/api.c
src/hardware/conrad-digi-35-cpu/protocol.h
src/hardware/demo/demo.c
src/hardware/fluke-dmm/fluke-dmm.h
src/hardware/ftdi-la/api.c
src/hardware/fx2lafw/protocol.c
src/hardware/gmc-mh-1x-2x/api.c
src/hardware/gmc-mh-1x-2x/protocol.c
src/hardware/gmc-mh-1x-2x/protocol.h
src/hardware/gwinstek-gds-800/api.c
src/hardware/hameg-hmo/protocol.c
src/hardware/hantek-6xxx/api.c
src/hardware/hantek-6xxx/protocol.h
src/hardware/hantek-dso/api.c
src/hardware/hp-3457a/protocol.c
src/hardware/hung-chang-dso-2100/protocol.c
src/hardware/kecheng-kc-330b/api.c
src/hardware/lascar-el-usb/api.c
src/hardware/manson-hcs-3xxx/api.c
src/hardware/manson-hcs-3xxx/protocol.c
src/hardware/manson-hcs-3xxx/protocol.h
src/hardware/maynuo-m97/api.c
src/hardware/maynuo-m97/protocol.c
src/hardware/motech-lps-30x/api.c
src/hardware/motech-lps-30x/protocol.c
src/hardware/motech-lps-30x/protocol.h
src/hardware/norma-dmm/protocol.c
src/hardware/norma-dmm/protocol.h
src/hardware/rigol-ds/protocol.c
src/hardware/saleae-logic16/api.c
src/hardware/scpi-pps/api.c
src/hardware/scpi-pps/profiles.c
src/hardware/serial-dmm/protocol.h
src/hardware/sysclk-lwla/lwla1016.c
src/hardware/sysclk-lwla/lwla1034.c
src/hardware/sysclk-lwla/protocol.c
src/hardware/teleinfo/protocol.h
src/hardware/testo/api.c
src/hardware/tondaj-sl-814/protocol.c
src/hardware/uni-t-dmm/api.c
src/hardware/uni-t-ut32x/api.c
src/hardware/uni-t-ut32x/protocol.h
src/hardware/victor-dmm/api.c
src/hardware/yokogawa-dlm/protocol.c
src/hardware/zeroplus-logic-cube/analyzer.c
src/hardware/zeroplus-logic-cube/analyzer.h
src/hardware/zeroplus-logic-cube/api.c
src/hardware/zeroplus-logic-cube/gl_usb.c
src/hwdriver.c
src/input/binary.c
src/input/csv.c
src/input/raw_analog.c
src/input/trace32_ad.c
src/input/vcd.c
src/input/wav.c
src/lcr/es51919.c
src/libsigrok-internal.h
src/modbus/modbus.c
src/output/ascii.c
src/output/bits.c
src/output/srzip.c
src/resource.c
src/scpi/scpi.c
src/scpi/scpi_tcp.c
src/scpi/scpi_usbtmc_libusb.c
src/serial.c
src/std.c
src/sw_limits.c
src/trigger.c

index 4966eedb0742ff4f00b4534b7c96627cf4605883..385d246e6e53e85bdcf410256b4ffb540c170a89 100644 (file)
@@ -209,7 +209,7 @@ SR_PRIV int sr_brymen_bm25x_parse(const uint8_t *buf, float *floatval,
                val = -val;
 
        *floatval = val;
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index 66e894afc516f40f7288a548b0613dc03743d9fa..e9c20bfbaf59c959f79ecc00de8d2736bc864083 100644 (file)
@@ -384,7 +384,7 @@ SR_PRIV int sr_dtm0660_parse(const uint8_t *buf, float *floatval,
        parse_flags(buf, info_local);
        handle_flags(analog, floatval, &exponent, info_local);
 
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index d4a857d367d75b7c59d63967175a06c93b6aee3f..9fbcd289b987fddefd26b0c126b5ff765b3251d6 100644 (file)
@@ -364,7 +364,7 @@ SR_PRIV int sr_fs9721_parse(const uint8_t *buf, float *floatval,
        parse_flags(buf, info_local);
        handle_flags(analog, floatval, &exponent, info_local);
 
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index 11fc7736e862107462ccc3b3f515c91056ca1b82..6e745412a3857f5b8e04732b893152bcef539d82 100644 (file)
@@ -370,7 +370,7 @@ SR_PRIV int sr_fs9922_parse(const uint8_t *buf, float *floatval,
        parse_flags(buf, info_local);
        handle_flags(analog, floatval, &exponent, info_local);
 
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index 2677484a743608e87451fc0db7d2da266f726d50..8198082ac3e70a4885d57360e39ee08d6b71e95e 100644 (file)
@@ -153,17 +153,17 @@ static void parse_flags(const char *buf, struct metex14_info *info)
                info->is_unitless = TRUE;
 
        /* Bytes 0-1: Measurement mode, except AC/DC */
-       info->is_resistance  = !strncmp(buf, "OH", 2) ||
+       info->is_resistance = !strncmp(buf, "OH", 2) ||
                (!strncmp(buf, "  ", 2) && info->is_ohm);
-       info->is_capacity    = !strncmp(buf, "CA", 2) ||
+       info->is_capacity = !strncmp(buf, "CA", 2) ||
                (!strncmp(buf, "  ", 2) && info->is_farad);
        info->is_temperature = !strncmp(buf, "TE", 2);
-       info->is_diode       = !strncmp(buf, "DI", 2) ||
+       info->is_diode = !strncmp(buf, "DI", 2) ||
                (!strncmp(buf, "  ", 2) && info->is_volt && info->is_milli);
-       info->is_frequency   = !strncmp(buf, "FR", 2) ||
+       info->is_frequency = !strncmp(buf, "FR", 2) ||
                (!strncmp(buf, "  ", 2) && info->is_hertz);
-       info->is_gain        = !strncmp(buf, "DB", 2);
-       info->is_hfe         = !strncmp(buf, "HF", 2) ||
+       info->is_gain = !strncmp(buf, "DB", 2);
+       info->is_hfe = !strncmp(buf, "HF", 2) ||
                (!strncmp(buf, "  ", 2) && !info->is_volt && !info->is_ohm &&
                 !info->is_logic && !info->is_farad && !info->is_hertz);
        /*
@@ -350,7 +350,7 @@ SR_PRIV int sr_metex14_parse(const uint8_t *buf, float *floatval,
        parse_flags((const char *)buf, info_local);
        handle_flags(analog, floatval, &exponent, info_local);
 
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index ed5428152fb820ac4825859ab51300e665f383db..5f4d86689088c252674ee840d73f625ade36c7e1 100644 (file)
@@ -438,7 +438,7 @@ SR_PRIV int sr_rs9lcd_parse(const uint8_t *buf, float *floatval,
 
        *floatval = rawval;
 
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index 442b6e12915f917f62f394e8f919be41ac2270c3..23f72c2d9012d6e3975efdcb899bb72cd6359906 100644 (file)
@@ -343,7 +343,7 @@ SR_PRIV int sr_ut71x_parse(const uint8_t *buf, float *floatval,
 
        handle_flags(analog, floatval, info);
 
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index 43be935e3bdebaff92777a04f550607784e3d936..a2b2b72a69d52da109c3bf8d61082da1ff3b08b6 100644 (file)
@@ -167,7 +167,7 @@ static int parse_range(uint8_t b, float *floatval, int *exponent,
 
 static void parse_flags(const uint8_t *buf, struct vc870_info *info)
 {
-       /* Bytes 0/1: Function / function select  */
+       /* Bytes 0/1: Function / function select */
        /* Note: Some of these mappings are fixed up later. */
        switch (buf[0]) {
        case 0x30: /* DCV / ACV */
@@ -429,7 +429,7 @@ SR_PRIV int sr_vc870_parse(const uint8_t *buf, float *floatval,
 
        handle_flags(analog, floatval, info_local);
 
-       analog->encoding->digits  = -exponent;
+       analog->encoding->digits = -exponent;
        analog->spec->spec_digits = -exponent;
 
        return SR_OK;
index d2763414acb8ae79f389ca519989f3d1332a62da..c6165b6360c71778b63b5ffcf7b656a6b06a72a2 100644 (file)
@@ -27,7 +27,7 @@
  * sr_driver_list is a special section contains pointers to all the hardware
  * drivers built into the library. The __start and __stop symbols are
  * auto-generated by the linker (OSX needs a little help) and point to the start
- * and end of the section.  They are used to iterate over the list of all
+ * and end of the section. They are used to iterate over the list of all
  * drivers.
  */
 #ifdef __APPLE__
index 1e8290550b7f5afd54d9bf1b105c2ca533d3d9f0..e89c7c149886310e7f0e4efefd0b46678642dcfa 100644 (file)
@@ -22,7 +22,7 @@
 
 #define LOG_PREFIX "agilent-dmm"
 
-#define AGDMM_BUFSIZE  256
+#define AGDMM_BUFSIZE 256
 
 /* Always USB-serial, 1ms is plenty. */
 #define SERIAL_WRITE_TIMEOUT_MS 1
index eeda2b5cd900f705ddb59a5b3b17253030014966..27dddc7f1ab614390da71f253cfc7d2dc73231ac 100644 (file)
@@ -480,14 +480,14 @@ static int recv_conf_u124x_5x(const struct sr_dev_inst *sdi, GMatchInfo *match)
 
        devc->mode_squarewave = 0;
 
-       rstr = g_match_info_fetch(match, 4);
+       rstr = g_match_info_fetch(match, 4);
        if (rstr && sr_atoi(rstr, &resolution) == SR_OK) {
                devc->cur_digits = -resolution;
                devc->cur_encoding = -resolution + 1;
        }
        g_free(rstr);
 
-       mstr = g_match_info_fetch(match, 1);
+       mstr = g_match_info_fetch(match, 1);
        if (!strncmp(mstr, "VOLT", 4)) {
                devc->cur_mq = SR_MQ_VOLTAGE;
                devc->cur_unit = SR_UNIT_VOLT;
@@ -553,7 +553,7 @@ static int recv_conf_u124x_5x(const struct sr_dev_inst *sdi, GMatchInfo *match)
                devc->cur_digits = 4;
                devc->cur_encoding = 5;
        } else if (!strncmp(mstr, "T1", 2) || !strncmp(mstr, "T2", 2) ||
-                  !strncmp(mstr, "TEMP", 2)) {
+                  !strncmp(mstr, "TEMP", 2)) {
                devc->cur_mq = SR_MQ_TEMPERATURE;
                m2 = g_match_info_fetch(match, 2);
                if (!strcmp(m2, "FAR"))
index ef265ff0196eb1b7f9498692450a66f347f5995c..c22ede50fcef1179fb6c499f07386d4591521e96 100644 (file)
 #include "protocol.h"
 
 typedef enum {
-    LIVE_DATA    = 0x00,
-    LOG_METADATA = 0x11,
-    LOG_DATA     = 0x14,
-    LOG_START    = 0x18,
-    LOG_END      = 0x19,
+       LIVE_DATA    = 0x00,
+       LOG_METADATA = 0x11,
+       LOG_DATA     = 0x14,
+       LOG_START    = 0x18,
+       LOG_END      = 0x19,
 } packet_type;
 
 static gboolean appa_55ii_checksum(const uint8_t *buf)
index eeae8e1ad4c4ce3e124095a4c68809d6c070cfef..248d672e1970b15e38352ddf61b1de02e3ca7396 100644 (file)
@@ -27,9 +27,9 @@
 
 #define LOG_PREFIX "appa-55ii"
 
-#define APPA_55II_NUM_CHANNELS  2
-#define APPA_55II_BUF_SIZE    (4 + 32 + 1)
-#define DEFAULT_DATA_SOURCE   DATA_SOURCE_LIVE
+#define APPA_55II_NUM_CHANNELS 2
+#define APPA_55II_BUF_SIZE     (4 + 32 + 1)
+#define DEFAULT_DATA_SOURCE    DATA_SOURCE_LIVE
 
 enum {
        DATA_SOURCE_LIVE,
@@ -40,7 +40,7 @@ enum {
 struct dev_context {
        /* Acquisition settings */
        struct sr_sw_limits limits;
-       gboolean data_source;     /**< Whether to read live samples or memory */
+       gboolean data_source; /**< Whether to read live samples or memory */
 
        /* Temporary state across callbacks */
        uint8_t buf[APPA_55II_BUF_SIZE];
index f6ccc3068fe6445fbd7f0e249d1434afa0494524..3181fef081c85cbf4380af54c774099b1d9e43af 100644 (file)
@@ -153,11 +153,11 @@ static void brymen_bm86x_parse(unsigned char *buf, float *floatval,
                        buf[15] &= ~0x04;
 
                /* SI prefix */
-               if (buf[14] & 0x40)  { floatval[0] *= 1e-9; digits[0] += 9; }  /* n */
-               if (buf[15] & 0x08)  { floatval[0] *= 1e-6; digits[0] += 6; }  /* Âµ */
-               if (buf[15] & 0x04)  { floatval[0] *= 1e-3; digits[0] += 3; }  /* m */
-               if (buf[15] & 0x40)  { floatval[0] *= 1e3;  digits[0] -= 3; }  /* k */
-               if (buf[15] & 0x20)  { floatval[0] *= 1e6;  digits[0] -= 6; }  /* M */
+               if (buf[14] & 0x40)  { floatval[0] *= 1e-9; digits[0] += 9; } /* n */
+               if (buf[15] & 0x08)  { floatval[0] *= 1e-6; digits[0] += 6; } /* Âµ */
+               if (buf[15] & 0x04)  { floatval[0] *= 1e-3; digits[0] += 3; } /* m */
+               if (buf[15] & 0x40)  { floatval[0] *= 1e3;  digits[0] -= 3; } /* k */
+               if (buf[15] & 0x20)  { floatval[0] *= 1e6;  digits[0] -= 6; } /* M */
 
                if (over_limit)      floatval[0] = INFINITY;
 
@@ -192,10 +192,10 @@ static void brymen_bm86x_parse(unsigned char *buf, float *floatval,
                if (buf[9] & 0x20)  analog[1].meaning->mqflags |= SR_MQFLAG_AC;
 
                /* SI prefix */
-               if (buf[ 9] & 0x01)  { floatval[1] *= 1e-6; digits[1] += 6; }  /* Âµ */
-               if (buf[ 9] & 0x02)  { floatval[1] *= 1e-3; digits[1] += 3; }  /* m */
-               if (buf[14] & 0x02)  { floatval[1] *= 1e3;  digits[1] -= 3; }  /* k */
-               if (buf[14] & 0x01)  { floatval[1] *= 1e6;  digits[1] -= 6; }  /* M */
+               if (buf[ 9] & 0x01)  { floatval[1] *= 1e-6; digits[1] += 6; } /* Âµ */
+               if (buf[ 9] & 0x02)  { floatval[1] *= 1e-3; digits[1] += 3; } /* m */
+               if (buf[14] & 0x02)  { floatval[1] *= 1e3;  digits[1] -= 3; } /* k */
+               if (buf[14] & 0x01)  { floatval[1] *= 1e6;  digits[1] -= 6; } /* M */
 
                analog[1].encoding->digits  = digits[1];
                analog[1].spec->spec_digits = digits[1];
@@ -260,7 +260,7 @@ static int brymen_bm86x_send_command(const struct sr_dev_inst *sdi)
 
        sr_dbg("Sending HID set report.");
        ret = libusb_control_transfer(usb->devhdl,
-                                     LIBUSB_REQUEST_TYPE_CLASS  |
+                                     LIBUSB_REQUEST_TYPE_CLASS |
                                      LIBUSB_RECIPIENT_INTERFACE |
                                      LIBUSB_ENDPOINT_OUT,
                                      9,     /* bRequest: HID set_report */
index 77b2f6ad20e257fa052ada522c43781fdc2bc350..88fa8b7fbc68dfa26b8e1bbf6d67919143ac31eb 100644 (file)
@@ -770,11 +770,11 @@ SR_PRIV int cem_dt_885x_meas_range_set(const struct sr_dev_inst *sdi,
        devc = sdi->priv;
        if (low == 30 && high == 130)
                token = TOKEN_MEAS_RANGE_30_130;
-       else if (low == 30 &&  high == 80)
+       else if (low == 30 && high == 80)
                token = TOKEN_MEAS_RANGE_30_80;
-       else if (low == 50 &&  high == 100)
+       else if (low == 50 && high == 100)
                token = TOKEN_MEAS_RANGE_50_100;
-       else if (low == 80 &&  high == 130)
+       else if (low == 80 && high == 130)
                token = TOKEN_MEAS_RANGE_80_130;
        else
                return SR_ERR;
index d5c75b3c01db675d9b811bec1ee1b7127cb7be06..2f6957abe2d0170770eb86694812abcc566090f2 100644 (file)
@@ -138,7 +138,7 @@ static void process_packet(const struct sr_dev_inst *sdi)
        case 0x9:
                /* Mean over a time period between 11 seconds and 24 hours.
                 * Which is so silly that there's no point in expressing
-                * either this or the previous case.  */
+                * either this or the previous case. */
                analog.meaning->mqflags |= SR_MQFLAG_SPL_LAT \
                                | SR_MQFLAG_SPL_FREQ_WEIGHT_A \
                                | SR_MQFLAG_SPL_TIME_WEIGHT_F;
index d50b446ea52d9e3e9044fe5432dad0231ede3768..cfa503d52a125d86a010d476f2b5398ab04cab98 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  <em>Conrad DIGI 35 CPU</em> power supply driver
- *  @internal
+/**
+ * @file
+ *
+ * <em>Conrad DIGI 35 CPU</em> power supply driver
+ *
+ * @internal
  */
 
 #include <config.h>
index 340cc23bee01daa17b260a4976a3d55dc227515f..99d2cb7041e2da670edb847469fcaa1318208ed3 100644 (file)
@@ -19,7 +19,9 @@
 
 /**
  * @file
+ *
  * <em>Conrad DIGI 35 CPU</em> power supply driver
+ *
  * @internal
  */
 
index baf715ba50f866f651055c17286941614a40c0b4..a1f8c6bf121b8040913212114c0314d008376518 100644 (file)
 
 #define LOG_PREFIX "demo"
 
-#define DEFAULT_NUM_LOGIC_CHANNELS     8
-#define DEFAULT_NUM_ANALOG_CHANNELS    4
+#define DEFAULT_NUM_LOGIC_CHANNELS     8
+#define DEFAULT_NUM_ANALOG_CHANNELS    4
 
 /* The size in bytes of chunks to send through the session bus. */
-#define LOGIC_BUFSIZE        4096
+#define LOGIC_BUFSIZE                  4096
 /* Size of the analog pattern space per channel. */
-#define ANALOG_BUFSIZE       4096
+#define ANALOG_BUFSIZE                 4096
 
-#define DEFAULT_ANALOG_AMPLITUDE 10
-#define ANALOG_SAMPLES_PER_PERIOD 20
+#define DEFAULT_ANALOG_AMPLITUDE       10
+#define ANALOG_SAMPLES_PER_PERIOD      20
 
 /* Logic patterns we can generate. */
 enum {
@@ -663,10 +663,8 @@ static void logic_generator(struct sr_dev_inst *sdi, uint64_t size)
 }
 
 static void send_analog_packet(struct analog_gen *ag,
-                              struct sr_dev_inst *sdi,
-                              uint64_t *analog_sent,
-                              uint64_t analog_pos,
-                              uint64_t analog_todo)
+               struct sr_dev_inst *sdi, uint64_t *analog_sent,
+               uint64_t analog_pos, uint64_t analog_todo)
 {
        struct sr_datafeed_packet packet;
        struct dev_context *devc;
index ecfa36cbb6948a4805db26700599811052f14691..a54c7ef05e95f2dbf4c2f4b929da36c13f013233 100644 (file)
@@ -22,7 +22,7 @@
 
 #define LOG_PREFIX "fluke-dmm"
 
-#define FLUKEDMM_BUFSIZE  256
+#define FLUKEDMM_BUFSIZE 256
 
 /* Always USB-serial, 1ms is plenty. */
 #define SERIAL_WRITE_TIMEOUT_MS 1
index 22715a1f43dc20480bb0724e624d439550b5b523..0927d3a274387d14d1fe1dd34a1377f72a73ee23 100644 (file)
@@ -120,7 +120,7 @@ static void scan_device(struct ftdi_context *ftdic,
        model = g_malloc(32);
        serial_num = g_malloc(32);
        rv = ftdi_usb_get_strings(ftdic, dev, vendor, 32,
-                            model, 32, serial_num, 32);
+                       model, 32, serial_num, 32);
        switch (rv) {
        case 0:
                break;
index fc875d04446d2098b60827005f3a7acbe7b4468d..70186518b6d5ade6b983a7b70f66ce8e1fd4eb9a 100644 (file)
@@ -403,7 +403,7 @@ SR_PRIV void mso_send_data_proc(struct sr_dev_inst *sdi,
 
        /* Send the logic */
        for (i = 0; i < length; i++) {
-               devc->logic_buffer[i]  = data[i * 2];
+               devc->logic_buffer[i] = data[i * 2];
                /* Rescale to -10V - +10V from 0-255. */
                devc->analog_buffer[i] = (data[i * 2 + 1] - 128.0f) / 12.8f;
        };
index 048a0afc6e3d2909853e4b49ca7c91accd92c249..303d435baffdea1e6b21554276a7742b41349d87 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  Gossen Metrawatt Metrahit 1x/2x drivers
- *  @internal
+/**
+ * @file
+ *
+ * Gossen Metrawatt Metrahit 1x/2x drivers
+ *
+ * @internal
  */
 
 #include <config.h>
@@ -40,7 +43,7 @@ static const uint32_t scanopts[] = {
 /** Hardware capabilities for Metrahit 1x/2x devices in send mode. */
 static const uint32_t devopts_sm[] = {
        SR_CONF_MULTIMETER,
-       SR_CONF_THERMOMETER,    /**< All GMC 1x/2x multimeters seem to support this */
+       SR_CONF_THERMOMETER, /**< All GMC 1x/2x multimeters seem to support this */
        SR_CONF_CONTINUOUS,
        SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
        SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
@@ -49,7 +52,7 @@ static const uint32_t devopts_sm[] = {
 /** Hardware capabilities for Metrahit 2x devices in bidirectional Mode. */
 static const uint32_t devopts_bd[] = {
        SR_CONF_MULTIMETER,
-       SR_CONF_THERMOMETER,    /**< All GMC 1x/2x multimeters seem to support this */
+       SR_CONF_THERMOMETER, /**< All GMC 1x/2x multimeters seem to support this */
        SR_CONF_CONTINUOUS,
        SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
        SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
@@ -118,7 +121,7 @@ static enum model scan_model_sm(struct sr_serial_dev_inst *serial)
                        for (cnt = 0; cnt < 4; cnt++) {
                                byte = read_byte(serial, timeout_us);
                                if ((byte == -1) ||
-                                               ((byte & MSGID_MASK) != MSGID_DATA))
+                                       ((byte & MSGID_MASK) != MSGID_DATA))
                                {
                                        model = METRAHIT_NONE;
                                        bytecnt = 100;
index 93f28e80d01a62142edf8b0894935701eb6156b8..20bf81fca6dc69ccd90603fd4c177b0f13201caa 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  Gossen Metrawatt Metrahit 1x/2x drivers
- *  @internal
+/**
+ * @file
+ *
+ * Gossen Metrawatt Metrahit 1x/2x drivers
+ *
+ * @internal
  */
 
 #include <config.h>
@@ -783,7 +786,7 @@ static void process_msg_inf_10(struct sr_dev_inst *sdi)
                devc->value += pow(10.0, cnt) * dgt;
        }
        sr_spew("process_msg_inf_10() value=%f scale=%d scalet=%d",
-               devc->value, devc->scale,  devc->scale1000);
+               devc->value, devc->scale, devc->scale1000);
 
        if (devc->value != NAN)
                devc->value *= pow(10, devc->scale) * pow(1000.0, devc->scale1000);
@@ -880,9 +883,11 @@ static void process_msg_inf_13(struct sr_dev_inst *sdi)
        send_value(sdi);
 }
 
-/** Dump contents of 14-byte message.
- *  @param buf Pointer to array of 14 data bytes.
- *  @param[in] raw Write only data bytes, no interpretation.
+/**
+ * Dump contents of 14-byte message.
+ *
+ * @param buf Pointer to array of 14 data bytes.
+ * @param[in] raw Write only data bytes, no interpretation.
  */
 static void dump_msg14(guchar *buf, gboolean raw)
 {
@@ -903,10 +908,11 @@ static void dump_msg14(guchar *buf, gboolean raw)
                                buf[12], buf[13]);
 }
 
-/** Calc checksum for 14 byte message type.
+/**
+ * Calc checksum for 14 byte message type.
  *
- *  @param[in] dta Pointer to array of 13 data bytes.
- *  @return Checksum.
+ * @param[in] dta Pointer to array of 13 data bytes.
+ * @return Checksum.
  */
 static guchar calc_chksum_14(guchar *dta)
 {
@@ -924,7 +930,7 @@ static int chk_msg14(struct sr_dev_inst *sdi)
        struct dev_context *devc;
        int retc;
        gboolean isreq; /* Message is request to multimeter (otherwise response) */
-       uint8_t addr;  /* Adaptor address */
+       uint8_t addr; /* Adaptor address */
 
        retc = SR_OK;
 
@@ -1024,7 +1030,7 @@ SR_PRIV int process_msg14(struct sr_dev_inst *sdi)
                        sr_spew("Measurement Function: %d ", (int)devc->buf[7]);
                        decode_ctmv_2x(devc->buf[7], devc);
                        sr_spew("Range: 0x%x", devc->buf[8]);
-                       decode_rs_2x_TR2(devc->buf[8] & 0x0f, devc);  /* Docs wrong, uses conversion table TR_2! */
+                       decode_rs_2x_TR2(devc->buf[8] & 0x0f, devc); /* Docs wrong, uses conversion table TR_2! */
                        devc->autorng = (devc->buf[8] & 0x20) == 0;
                        // TODO 9, 10: 29S special functions
                        devc->ubatt = 0.1 * (float)devc->buf[11];
@@ -1035,7 +1041,7 @@ SR_PRIV int process_msg14(struct sr_dev_inst *sdi)
                        sr_spew("Internal version %d.%d", (int)devc->buf[5], (int)devc->buf[4]);
                        sr_spew("Comm mode: 0x%x", (int)devc->buf[6]);
                        sr_spew("Block cnt%%64: %d", (int)devc->buf[7]);
-                       sr_spew("drpCi: %d  drpCh: %d", (int)devc->buf[8], (int)devc->buf[9]);
+                       sr_spew("drpCi: %d drpCh: %d", (int)devc->buf[8], (int)devc->buf[9]);
                        // Semantics undocumented. Possibly Metrahit 29S dropouts stuff?
                        break;
                default:
@@ -1248,13 +1254,15 @@ SR_PRIV int gmc_mh_2x_receive_data(int fd, int revents, void *cb_data)
        return TRUE;
 }
 
-/** Create 14 (42) byte command for Metrahit 2x multimeter in bidir mode.
+/**
+ * Create 14 (42) byte command for Metrahit 2x multimeter in bidir mode.
  *
- *  Actually creates 42 bytes due to the encoding method used.
- *  @param[in] addr Device address (0=adapter, 1..15 multimeter; for byte 0).
- *  @param[in] func Function code (byte 3).
- *  @param[in] params Further parameters (9 bytes)
- *  @param[out] buf Buffer to create msg in (42 bytes).
+ * Actually creates 42 bytes due to the encoding method used.
+ *
+ * @param[in] addr Device address (0=adapter, 1..15 multimeter; for byte 0).
+ * @param[in] func Function code (byte 3).
+ * @param[in] params Further parameters (9 bytes)
+ * @param[out] buf Buffer to create msg in (42 bytes).
  */
 static void create_cmd_14(guchar addr, guchar func, guchar *params, guchar *buf)
 {
@@ -1316,8 +1324,11 @@ int req_meas14(const struct sr_dev_inst *sdi)
        return SR_OK;
 }
 
-/** Request status from 2x multimeter (msg 3).
- *  @param[in] power_on Try to power on powered off multimeter by sending additional messages.
+/**
+ * Request status from 2x multimeter (msg 3).
+ *
+ * @param[in] power_on Try to power on powered off multimeter by sending
+ *                     additional messages.
  */
 int req_stat14(const struct sr_dev_inst *sdi, gboolean power_on)
 {
@@ -1412,11 +1423,12 @@ SR_PRIV int gmc_decode_model_sm(uint8_t mcode)
        }
 }
 
-/** Convert GMC model code in bidirectional mode to sigrok-internal one.
+/**
+ * Convert GMC model code in bidirectional mode to sigrok-internal one.
  *
- *  @param[in] mcode Model code.
+ * @param[in] mcode Model code.
  *
- *  @return Model code.
+ * @return Model code.
  */
 SR_PRIV int gmc_decode_model_bd(uint8_t mcode)
 {
@@ -1447,11 +1459,12 @@ SR_PRIV int gmc_decode_model_bd(uint8_t mcode)
        }
 }
 
-/** Convert sigrok-internal model code to string.
+/**
+ * Convert sigrok-internal model code to string.
  *
- *  @param[in] mcode Model code.
+ * @param[in] mcode Model code.
  *
- *  @return Model code string.
+ * @return Model code string.
  */
 SR_PRIV const char *gmc_model_str(enum model mcode)
 {
index 8668ff34c455dc9a7679fe56731363ec3f27e7a8..52563d95e0ab9597cac755a57a59feccd4df07ca 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  Gossen Metrawatt Metrahit 1x/2x drivers
- *  @internal
+/**
+ * @file
+ *
+ * Gossen Metrawatt Metrahit 1x/2x drivers
+ *
+ * @internal
  */
 
 #ifndef LIBSIGROK_HARDWARE_GMC_MH_1X_2X_PROTOCOL_H
@@ -42,7 +45,7 @@
 #define MSGID_DTA   0x20 /**< Start of data message, displayed, averaged */
 #define MSGID_DATA  0x30 /**< Data byte in message */
 
-#define MSGC_MASK   0x0f  /**< Mask to get message byte contents in send mode */
+#define MSGC_MASK   0x0f /**< Mask to get message byte contents in send mode */
 
 #define MSGSRC_MASK 0xc0 /**< Mask to get bits related to message source */
 
index 2889a814d2996c0e46eaffaff53d79d22f944f2b..99c29a3e5ccc466167b310b4b1d80f5571964d96 100644 (file)
@@ -66,8 +66,8 @@ static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
 
        devc = g_malloc0(sizeof(struct dev_context));
        devc->frame_limit = 1;
-       devc->sample_rate = 0.;
-       devc->df_started  = FALSE;
+       devc->sample_rate = 0.0;
+       devc->df_started = FALSE;
        sdi->priv = devc;
 
        sr_channel_new(sdi, 0, SR_CHANNEL_ANALOG, TRUE, "CH1");
index 2681a8f089728014b265fd2e8fa231bead6c18d0..85712f8de427295ebdeeb85ca4fdb08c2d49c566 100644 (file)
@@ -284,7 +284,7 @@ static void scope_state_dump(const struct scope_config *config,
        for (i = 0; i < config->analog_channels; i++) {
                tmp = sr_voltage_string((*config->vdivs)[state->analog_channels[i].vdiv][0],
                                             (*config->vdivs)[state->analog_channels[i].vdiv][1]);
-               sr_info("State of analog channel  %d -> %s : %s (coupling) %s (vdiv) %2.2e (offset)",
+               sr_info("State of analog channel %d -> %s : %s (coupling) %s (vdiv) %2.2e (offset)",
                        i + 1, state->analog_channels[i].state ? "On" : "Off",
                        (*config->coupling_options)[state->analog_channels[i].coupling],
                        tmp, state->analog_channels[i].vertical_offset);
index 349b557b7eaa91d3937548ea21bad0de3097e475..0f00cd3ea25b7a6fef2e7b9e46f84b2318432955 100644 (file)
@@ -307,7 +307,7 @@ static int dev_open(struct sr_dev_inst *sdi)
        err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
        if (err != 0) {
                sr_err("Unable to claim interface: %s.",
-                          libusb_error_name(err));
+                       libusb_error_name(err));
                return SR_ERR;
        }
 
index c32792e3c898712d0486485e0cba5221e27080d0..0e3e04d4a160c656e9c5f78aa982e25fc031e3d3 100644 (file)
@@ -31,7 +31,7 @@
 #define MAX_RENUM_DELAY_MS     3000
 
 #define DEFAULT_VOLTAGE                2
-#define DEFAULT_COUPLING        COUPLING_DC
+#define DEFAULT_COUPLING       COUPLING_DC
 #define DEFAULT_SAMPLERATE     SR_MHZ(8)
 
 #define NUM_CHANNELS           2
@@ -43,7 +43,7 @@
        SR_KHZ(100),
 
 #define SAMPLERATE_REGS \
-       48, 30, 24, 16, 8,  4, 1, 50, 20, 10,
+       48, 30, 24, 16, 8, 4, 1, 50, 20, 10,
 
 #define VDIV_VALUES \
        { 100, 1000 }, \
index e9aa4e5884f287532780aca1accaea4362777ccd..7b99b0f0598d91fa93adc6cb0c1ffe740d681fd9 100644 (file)
@@ -39,8 +39,8 @@
 /* TODO tune this properly */
 #define TICK 1
 
-#define NUM_TIMEBASE  10
-#define NUM_VDIV      8
+#define NUM_TIMEBASE 10
+#define NUM_VDIV     8
 
 #define NUM_BUFFER_SIZES 2
 
@@ -389,7 +389,7 @@ static int dev_open(struct sr_dev_inst *sdi)
        err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
        if (err != 0) {
                sr_err("Unable to claim interface: %s.",
-                          libusb_error_name(err));
+                       libusb_error_name(err));
                return SR_ERR;
        }
 
@@ -767,7 +767,7 @@ static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
        num_samples = transfer->actual_length / 2;
 
        sr_spew("Got %d-%d/%d samples in frame.", devc->samp_received + 1,
-                  devc->samp_received + num_samples, devc->framesize);
+               devc->samp_received + num_samples, devc->framesize);
 
        /*
         * The device always sends a full frame, but the beginning of the frame
@@ -798,7 +798,7 @@ static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
 
                        /* The rest of this chunk starts with the trigger point. */
                        sr_dbg("Reached trigger point, %d samples buffered.",
-                                  devc->samp_buffered);
+                               devc->samp_buffered);
 
                        /* Avoid the corner case where the chunk ended at
                         * exactly the trigger point. */
@@ -822,7 +822,7 @@ static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
                /* That was the last chunk in this frame. Send the buffered
                 * pre-trigger samples out now, in one big chunk. */
                sr_dbg("End of frame, sending %d pre-trigger buffered samples.",
-                          devc->samp_buffered);
+                       devc->samp_buffered);
                send_chunk(sdi, devc->framebuf, devc->samp_buffered);
 
                /* Mark the end of this frame. */
index bf673fdee45e2a57242140b1a51abdf96b838ab6..dd8d6f8fdbeb75df1f3873fe5e68d5f27036a156 100644 (file)
@@ -67,7 +67,7 @@ static const struct rear_card_info rear_card_parameters[] = {
 };
 
 static int send_mq_ac_dc(struct sr_scpi_dev_inst *scpi, const char *mode,
-                          enum sr_mqflag flags)
+                        enum sr_mqflag flags)
 {
        const char *ac_flag, *dc_flag;
 
index cfe84f41278cefdac12dc16029b176112bd4cb37..160e5a0c63f1de492d9b45eb3b86f5c1837f51d9 100644 (file)
  *             trigger on (rising or falling)
  *             The next state is 0x0C
  *  0x0C       Same as state 0x0F but expects the calibration
- *             value for the first channel's  position
+ *             value for the first channel's position
  *             (POS1 in the schematics)
  *             The next state is 0x0D
  *  0x0D       Same as state 0x0F but expects the calibration
- *             value for the second channel's  position
+ *             value for the second channel's position
  *             (POS2 in the schematics)
  *             The next state is 0x0E
  *  0x0E       Same as state 0x0F but expects the trigger level
index a4e62619600bca84ba82924612a6119e436c1b5b..30bb1b2a578bb05996817dae2655cedcaf61253b 100644 (file)
@@ -184,7 +184,7 @@ static int dev_close(struct sr_dev_inst *sdi)
        usb = sdi->conn;
 
        if (!usb->devhdl)
-               /*  Nothing to do. */
+               /* Nothing to do. */
                return SR_OK;
 
        /* This allows a frontend to configure the device without ever
index 405c8f923053d4f3be29580144919dcaf17860c1..96ed3616f1b40c235bc849f17d73d9879b87f0e0 100644 (file)
@@ -109,7 +109,7 @@ static int dev_close(struct sr_dev_inst *sdi)
        usb = sdi->conn;
 
        if (!usb->devhdl)
-               /*  Nothing to do. */
+               /* Nothing to do. */
                return SR_OK;
 
        libusb_release_interface(usb->devhdl, LASCAR_INTERFACE);
index 97a9a30076b5b60e0ca45d7370067e002f064aaf..59e30d3fb73fdcf4bce714781db3b9e2a1b9e121 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-/** @file
-  *  <em>Manson HCS-3xxx series</em> power supply driver
-  *  @internal
-  */
+/**
+ * @file
+ *
+ * <em>Manson HCS-3xxx series</em> power supply driver
+ *
+ * @internal
+ */
 
 #include <config.h>
 #include "protocol.h"
index 04e18a5fee96297f706f0af7ff8fec428db78479..7a3778327ffc1de995cecb029e65ce4aaf29f307 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-/** @file
-  *  <em>Manson HCS-3xxx Series</em> power supply driver
-  *  @internal
-  */
+/**
+ * @file
+ *
+ * <em>Manson HCS-3xxx Series</em> power supply driver
+ *
+ * @internal
+ */
 
 #include <config.h>
 #include "protocol.h"
@@ -56,10 +59,12 @@ SR_PRIV int hcs_send_cmd(struct sr_serial_dev_inst *serial, const char *cmd, ...
 /**
  * Read data from interface into buffer blocking until @a lines number of \\r chars
  * received.
+ *
  * @param serial Previously initialized serial port structure.
  * @param[in] lines Number of \\r-terminated lines to read (1-n).
- * @param     buf Buffer for result. Contents is NUL-terminated on success.
+ * @param buf Buffer for result. Contents is NUL-terminated on success.
  * @param[in] buflen Buffer length (>0).
+ *
  * @retval SR_OK Lines received and ending with "OK\r" (success).
  * @retval SR_ERR Error.
  * @retval SR_ERR_ARG Invalid argument.
index bb898f2011828f54d28cd0dc640e2d9a67d9c233..df8814ed14a8e9e4123f6a484c1e0198e4874a67 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-/** @file
-  *  <em>Manson HCS-3xxx Series</em> power supply driver
-  *  @internal
-  */
+/**
+ * @file
+ *
+ * <em>Manson HCS-3xxx Series</em> power supply driver
+ *
+ * @internal
+ */
 
 #ifndef LIBSIGROK_HARDWARE_MANSON_HCS_3XXX_PROTOCOL_H
 #define LIBSIGROK_HARDWARE_MANSON_HCS_3XXX_PROTOCOL_H
index 682254315429732f14697e59b38369e03ce0fdb4..3ded72e9f49acabacc825dcff98bbb024dc2c9d3 100644 (file)
@@ -53,9 +53,11 @@ static const uint32_t devopts_cg[] = {
        SR_CONF_OVER_TEMPERATURE_PROTECTION_ACTIVE | SR_CONF_GET,
 };
 
-/* The IDs in this list are only guessed and needs to be verified
-   against some real hardware. If at least a few of them matches,
-   it will probably be safe to enable the others. */
+/*
+ * The IDs in this list are only guessed and needs to be verified
+ * against some real hardware. If at least a few of them matches,
+ * it will probably be safe to enable the others.
+ */
 static const struct maynuo_m97_model supported_models[] = {
 //     {  53, "M9711"     ,   30, 150,    150 },
 //     {  54, "M9712"     ,   30, 150,    300 },
@@ -170,12 +172,12 @@ static int config_compare(gconstpointer a, gconstpointer b)
 static GSList *scan(struct sr_dev_driver *di, GSList *options)
 {
        struct sr_config default_serialcomm = {
-           .key = SR_CONF_SERIALCOMM,
-           .data = g_variant_new_string("9600/8n1"),
+               .key = SR_CONF_SERIALCOMM,
+               .data = g_variant_new_string("9600/8n1"),
        };
        struct sr_config default_modbusaddr = {
-           .key = SR_CONF_MODBUSADDR,
-           .data = g_variant_new_uint64(1),
+               .key = SR_CONF_MODBUSADDR,
+               .data = g_variant_new_uint64(1),
        };
        GSList *opts = options, *devices;
 
@@ -224,8 +226,7 @@ static int dev_close(struct sr_dev_inst *sdi)
                        /* Wait for the last data that was requested from the device. */
                        uint16_t registers[devc->expecting_registers];
                        sr_modbus_read_holding_registers(modbus, -1,
-                                                        devc->expecting_registers,
-                                                        registers);
+                               devc->expecting_registers, registers);
                }
 
                maynuo_m97_set_bit(modbus, PC1, 0);
index 05c3ae68116e00f5aa47f29fdc1d525de61d6022..04fa294835c564916c0ee8d9e18541e3ed21b01e 100644 (file)
@@ -95,8 +95,8 @@ SR_PRIV int maynuo_m97_get_model_version(struct sr_modbus_dev_inst *modbus,
        uint16_t registers[2];
        int ret;
        ret = sr_modbus_read_holding_registers(modbus, MODEL, 2, registers);
-       *model   = RB16(registers+0);
-       *version = RB16(registers+1);
+       *model   = RB16(registers + 0);
+       *version = RB16(registers + 1);
        return ret;
 }
 
index 1fe0d86cc15fe194c3a737ede8030f351cc4bc70..de707f2d1ca946085959d8d53a65dd05fc3570dd 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  <em>Motech LPS-30x series</em> power supply driver
- *  @internal
+/**
+ * @file
+ *
+ * <em>Motech LPS-30x series</em> power supply driver
+ *
+ * @internal
  */
 
 #include <config.h>
@@ -173,7 +176,7 @@ SR_PRIV int lps_cmd_ok(struct sr_serial_dev_inst *serial, const char *fmt, ...)
        va_list args;
        char buf[LINELEN_MAX];
        char *bufptr;
-       int  buflen;
+       int buflen;
 
        /* Send command */
        va_start(args, fmt);
@@ -194,8 +197,9 @@ SR_PRIV int lps_cmd_ok(struct sr_serial_dev_inst *serial, const char *fmt, ...)
        return SR_ERR;
 }
 
-/** Send command and read reply string.
- *  @param reply Pointer to buffer of size LINELEN_MAX. Will be NUL-terminated.
+/**
+ * Send command and read reply string.
+ * @param reply Pointer to buffer of size LINELEN_MAX. Will be NUL-terminated.
  */
 SR_PRIV int lps_cmd_reply(char *reply, struct sr_serial_dev_inst *serial, const char *fmt, ...)
 {
@@ -203,7 +207,7 @@ SR_PRIV int lps_cmd_reply(char *reply, struct sr_serial_dev_inst *serial, const
        va_list args;
        char buf[LINELEN_MAX];
        char *bufptr;
-       int  buflen;
+       int buflen;
 
        reply[0] = '\0';
 
@@ -307,9 +311,11 @@ static gint64 calc_timeout_ms(gint64 start_us)
        return result;
 }
 
-/** Read message into buf until "OK" received.
- *  @retval SR_OK Msg received; buf and buflen contain result, if any except OK.
- *  @retval SR_ERR Error, including timeout.
+/**
+ * Read message into buf until "OK" received.
+ *
+ * @retval SR_OK Msg received; buf and buflen contain result, if any except OK.
+ * @retval SR_ERR Error, including timeout.
 */
 SR_PRIV int lps_read_reply(struct sr_serial_dev_inst *serial, char **buf, int *buflen)
 {
@@ -431,7 +437,7 @@ static GSList *do_scan(lps_modelid modelid, struct sr_dev_driver *drv, GSList *o
                g_strstrip(buf);
                verstr = buf + 4;
        }
-       else  /* Bug in device FW 1.17: Querying version string fails while output is active.
+       else /* Bug in device FW 1.17: Querying version string fails while output is active.
                Therefore just print an error message, but do not exit with error. */
                sr_err("Failed to query for hardware version: %s.",
                        sr_strerror(ret));
@@ -725,10 +731,10 @@ static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *
        case SR_CONF_DEVICE_OPTIONS:
                if ((ch_idx == 0) || (ch_idx == 1)) /* CH1, CH2 */
                        *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
-                                 devopts_ch12, ARRAY_SIZE(devopts_ch12), sizeof(uint32_t));
+                               devopts_ch12, ARRAY_SIZE(devopts_ch12), sizeof(uint32_t));
                else /* Must be CH3 */
                        *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
-                                 devopts_ch3, ARRAY_SIZE(devopts_ch3), sizeof(uint32_t));
+                               devopts_ch3, ARRAY_SIZE(devopts_ch3), sizeof(uint32_t));
                break;
        case SR_CONF_VOLTAGE_TARGET:
                g_variant_builder_init(&gvb, G_VARIANT_TYPE_ARRAY);
index 0681eed630a800ad0463eea93ec5ce851b77c4d2..4de6f0e9d4b5fb7546fa85a17c172ffd943b602a 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  <em>Motech LPS-30x series</em> power supply driver
- *  @internal
+/**
+ * @file
+ *
+ * <em>Motech LPS-30x series</em> power supply driver
+ *
+ * @internal
  */
 
 #include <config.h>
index 71458728a2b6b55130be7d5c877bddfbc95f1859..cb74148f468dcf82c75871cef191747c8239f164 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  <em>Motech LPS-30x series</em> power supply driver
- *  @internal
+/**
+ * @file
+ *
+ * <em>Motech LPS-30x series</em> power supply driver
+ *
+ * @internal
  */
 
 #ifndef LIBSIGROK_HARDWARE_MOTECH_LPS_30X_PROTOCOL_H
index 96a47379417392ae559e153cd5064ced93b37da2..de31828a706bcdc1f96f5b7155347ee5526ae564 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
- *  Norma DM9x0/Siemens B102x DMMs driver.
- *  @internal
+/**
+ * @file
+ *
+ * Norma DM9x0/Siemens B102x DMMs driver.
+ *
+ * @internal
  */
 
 #include <config.h>
@@ -350,13 +353,13 @@ static void nma_process_line(const struct sr_dev_inst *sdi)
        /* 4: Flags. Evaluating this after setting value! */
        flags = xgittoint(devc->buf[4]);
        if (flags & 0x04) /* Invalid value */
-           value = NAN;
+               value = NAN;
        else if (flags & 0x01) /* Overload */
-           value =  INFINITY;
+               value = INFINITY;
        if (flags & 0x02) { /* Duplicate value, has been sent before. */
-           sr_spew("Duplicate value, dismissing!");
-           devc->buflen = 0;
-           return;
+               sr_spew("Duplicate value, dismissing!");
+               devc->buflen = 0;
+               return;
        }
 
        sr_spew("range=%d/scale=%f/value=%f", range,
index 7ce7911f95986f6a45f0f2375e9a54bfe2f7c7c7..bec6107046b51e0a11f5f66a6e7aca1b973c1f78 100644 (file)
 #include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
-/** @file
- *  Norma DM9x0/Siemens B102x DMMs driver.
- *  @internal
+/**
+ * @file
+ *
+ * Norma DM9x0/Siemens B102x DMMs driver.
+ *
+ * @internal
  */
 
 #define LOG_PREFIX "norma-dmm"
 
-#define NMADMM_BUFSIZE  256
+#define NMADMM_BUFSIZE 256
 
 #define NMADMM_TIMEOUT_MS 2000 /**< Request timeout. */
 
index df72307d411b3924e4d43361240a87034665168f..77af43e94d3d3af4f7bdc93a693dd9f781d03c61 100644 (file)
@@ -221,7 +221,7 @@ static int rigol_ds_check_stop(const struct sr_dev_inst *sdi)
                return SR_OK;
 
        if (rigol_ds_config_set(sdi, ":WAV:SOUR CHAN%d",
-                         ch->index + 1) != SR_OK)
+                       ch->index + 1) != SR_OK)
                return SR_ERR;
        /* Check that the number of samples will be accepted */
        if (rigol_ds_config_set(sdi, ":WAV:POIN %d", devc->analog_frame_size) != SR_OK)
@@ -432,7 +432,7 @@ SR_PRIV int rigol_ds_channel_start(const struct sr_dev_inst *sdi)
                break;
        case PROTOCOL_V3:
                if (rigol_ds_config_set(sdi, ":WAV:SOUR CHAN%d",
-                                 ch->index + 1) != SR_OK)
+                               ch->index + 1) != SR_OK)
                        return SR_ERR;
                if (devc->data_source != DATA_SOURCE_LIVE) {
                        if (rigol_ds_config_set(sdi, ":WAV:RES") != SR_OK)
index 3597d3f1245357ca7f24e3c1f96defe930df4fea..e6b752d1fcb3f7bc18d8a2425bdec5ba02b12e9c 100644 (file)
@@ -195,7 +195,7 @@ static GSList *scan(struct sr_dev_driver *di, GSList *options)
 
                for (j = 0; j < ARRAY_SIZE(channel_names); j++)
                        sr_channel_new(sdi, j, SR_CHANNEL_LOGIC, TRUE,
-                                           channel_names[j]);
+                                       channel_names[j]);
 
                devc = g_malloc0(sizeof(struct dev_context));
                devc->selected_voltage_range = VOLTAGE_RANGE_18_33_V;
index 5bce3af0d3f092bb35b861c06c5b1f60b9d5d6c4..57bdcb81b7df9339c033e787ce1c95958c797fb3 100644 (file)
@@ -43,9 +43,8 @@ static const struct pps_channel_instance pci[] = {
 };
 
 static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi,
-                                       int (*get_hw_id)(struct sr_scpi_dev_inst *scpi,
-                                                       struct sr_scpi_hw_info **scpi_response)
-                          )
+               int (*get_hw_id)(struct sr_scpi_dev_inst *scpi,
+               struct sr_scpi_hw_info **scpi_response))
 {
        struct dev_context *devc;
        struct sr_dev_inst *sdi;
index 7cd2e2b71747344ff1dab3b479d64f3f9ce5be7e..f2cbf7378c3d0c438aabfcf017ef61e5c90f6246 100644 (file)
@@ -481,7 +481,7 @@ static int philips_pm2800_probe_channels(struct sr_dev_inst *sdi,
                sr_dbg("output %d: %.0f - %.0fV, %.0f - %.0fA, %.0f - %.0fW", i + 1,
                                spec->voltage[0], spec->voltage[1],
                                spec->current[0], spec->current[1],
-                               spec->power[0]  , spec->power[1]);
+                               spec->power[0], spec->power[1]);
                (*channels)[i].name = (char *)philips_pm2800_names[i];
                memcpy(&((*channels)[i].voltage), spec, sizeof(float) * 15);
                (*channel_groups)[i].name = (char *)philips_pm2800_names[i];
index f8ecbb42b92174a93a27587fd976cec886ee03bd..9749345604589328e7b619b3e0f55b39cf145ca5 100644 (file)
@@ -35,11 +35,15 @@ struct dmm_info {
        uint32_t baudrate;
        /** Packet size in bytes. */
        int packet_size;
-       /** Request timeout [ms] before request is considered lost and a new
-        *  one is sent. Used only if device needs polling. */
+       /**
+        * Request timeout [ms] before request is considered lost and a new
+        * one is sent. Used only if device needs polling.
+        */
        int64_t req_timeout_ms;
-       /** Delay between reception of packet and next request. Some DMMs
-        *  need this. Used only if device needs polling. */
+       /**
+        * Delay between reception of packet and next request. Some DMMs
+        * need this. Used only if device needs polling.
+        */
        int64_t req_delay_ms;
        /** Packet request function. */
        int (*packet_request)(struct sr_serial_dev_inst *);
@@ -64,8 +68,10 @@ struct dev_context {
        int bufoffset;
        int buflen;
 
-       /** The timestamp [µs] to send the next request.
-        *  Used only if device needs polling. */
+       /**
+        * The timestamp [µs] to send the next request.
+        * Used only if device needs polling.
+        */
        int64_t req_next_at;
 };
 
index b280b7a2790d26708abe1b8ffa17c976c1380431..d16a35e71175a2c8f58f18a5bf8d180921d1a442 100644 (file)
@@ -121,7 +121,7 @@ static void read_response(struct acquisition_state *acq)
         * alignment is guaranteed.
         */
        out_p = (uint32_t *)&acq->out_packet[acq->out_index * UNIT_SIZE];
-       in_p  = &acq->xfer_buf_in[acq->in_index];
+       in_p = &acq->xfer_buf_in[acq->in_index];
        /*
         * Transfer two samples at a time, taking care to swap the 16-bit
         * halves of each input word but keeping the samples themselves in
@@ -201,7 +201,7 @@ static int test_read_memory(const struct sr_dev_inst *sdi,
        unsigned char reply[512];
 
        devc = sdi->priv;
-       usb  = sdi->conn;
+       usb = sdi->conn;
 
        command[0] = LWLA_WORD(CMD_READ_MEM32);
        command[1] = LWLA_WORD_0(start);
@@ -317,7 +317,7 @@ static int setup_acquisition(const struct sr_dev_inst *sdi)
        int ret;
 
        devc = sdi->priv;
-       usb  = sdi->conn;
+       usb = sdi->conn;
 
        ret = lwla_write_reg(usb, REG_CHAN_MASK, devc->channel_mask);
        if (ret != SR_OK)
@@ -349,7 +349,7 @@ static int prepare_request(const struct sr_dev_inst *sdi)
        unsigned int chunk_len, count;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        acq->xfer_out->length = 0;
        acq->reg_seq_pos = 0;
@@ -409,7 +409,7 @@ static int handle_response(const struct sr_dev_inst *sdi)
        int expect_len;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        switch (devc->state) {
        case STATE_STATUS_REQUEST:
index 14692c38c618a58bac0f08b779cee3c2d5a93557..a4bda3683016c9f4918ba8c0e08ad1ba1092c280 100644 (file)
@@ -284,7 +284,7 @@ static int detect_short_transfer_quirk(const struct sr_dev_inst *sdi)
        const int lreg_count = 10;
 
        devc = sdi->priv;
-       usb  = sdi->conn;
+       usb = sdi->conn;
 
        command[0] = LWLA_WORD(CMD_READ_LREGS);
        command[1] = LWLA_WORD(0);
@@ -389,8 +389,8 @@ static int setup_acquisition(const struct sr_dev_inst *sdi)
        int ret;
 
        devc = sdi->priv;
-       usb  = sdi->conn;
-       acq  = devc->acquisition;
+       usb = sdi->conn;
+       acq = devc->acquisition;
 
        ret = lwla_write_regs(usb, capture_init, ARRAY_SIZE(capture_init));
        if (ret != SR_OK)
@@ -414,7 +414,7 @@ static int setup_acquisition(const struct sr_dev_inst *sdi)
 
        bulk_long_set(acq, LREG_DIV_COUNT, divider_count);
        bulk_long_set(acq, LREG_TRG_VALUE, devc->trigger_values);
-       bulk_long_set(acq, LREG_TRG_TYPE,  devc->trigger_edge_mask);
+       bulk_long_set(acq, LREG_TRG_TYPE, devc->trigger_edge_mask);
 
        trigger_mask = devc->trigger_mask;
 
@@ -517,7 +517,7 @@ static int handle_response(const struct sr_dev_inst *sdi)
        int expect_len;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        switch (devc->state) {
        case STATE_STATUS_REQUEST:
@@ -527,7 +527,7 @@ static int handle_response(const struct sr_dev_inst *sdi)
                        return SR_ERR;
                }
                acq->mem_addr_fill = bulk_long_get(acq, LREG_MEM_FILL) & 0xFFFFFFFF;
-               acq->duration_now  = bulk_long_get(acq, LREG_DURATION);
+               acq->duration_now = bulk_long_get(acq, LREG_DURATION);
                /* Shift left by one so the bit positions match the LWLA1016. */
                acq->status = (bulk_long_get(acq, LREG_STATUS) & 0x3F) << 1;
                /*
index 986aa6121d55a57877ef71c99371811193ab487a..85997249143213304062396e5bea67361ec1a8ae 100644 (file)
@@ -97,7 +97,7 @@ static int submit_request(const struct sr_dev_inst *sdi,
        int ret;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        devc->state = state;
 
@@ -132,7 +132,7 @@ static void handle_status_response(const struct sr_dev_inst *sdi)
        unsigned int old_status;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
        old_status = acq->status;
 
        if ((*devc->model->handle_response)(sdi) != SR_OK) {
@@ -168,7 +168,7 @@ static void handle_length_response(const struct sr_dev_inst *sdi)
        struct acquisition_state *acq;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        if ((*devc->model->handle_response)(sdi) != SR_OK) {
                devc->transfer_error = TRUE;
@@ -202,13 +202,13 @@ static void handle_read_response(const struct sr_dev_inst *sdi)
        unsigned int end_addr;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        /* Prepare session packet. */
-       packet.type    = SR_DF_LOGIC;
+       packet.type = SR_DF_LOGIC;
        packet.payload = &logic;
        logic.unitsize = (devc->model->num_channels + 7) / 8;
-       logic.data     = acq->out_packet;
+       logic.data = acq->out_packet;
 
        end_addr = MIN(acq->mem_addr_next, acq->mem_addr_stop);
        acq->in_index = 0;
@@ -258,7 +258,7 @@ static void clear_acquisition_state(const struct sr_dev_inst *sdi)
        struct acquisition_state *acq;
 
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        devc->acquisition = NULL;
 
@@ -281,7 +281,7 @@ static int transfer_event(int fd, int revents, void *cb_data)
 
        (void)fd;
 
-       sdi  = cb_data;
+       sdi = cb_data;
        devc = sdi->priv;
        drvc = sdi->driver->context;
 
@@ -289,7 +289,7 @@ static int transfer_event(int fd, int revents, void *cb_data)
                return G_SOURCE_REMOVE;
 
        /* Handle pending USB events without blocking. */
-       tv.tv_sec  = 0;
+       tv.tv_sec = 0;
        tv.tv_usec = 0;
        ret = libusb_handle_events_timeout_completed(drvc->sr_ctx->libusb_ctx,
                                                     &tv, NULL);
@@ -329,9 +329,9 @@ static void LIBUSB_CALL transfer_out_completed(struct libusb_transfer *transfer)
        struct dev_context *devc;
        struct acquisition_state *acq;
 
-       sdi  = transfer->user_data;
+       sdi = transfer->user_data;
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        if (transfer->status != LIBUSB_TRANSFER_COMPLETED) {
                sr_err("Transfer to device failed (state %d): %s.",
@@ -394,9 +394,9 @@ static void LIBUSB_CALL transfer_in_completed(struct libusb_transfer *transfer)
        struct dev_context *devc;
        struct acquisition_state *acq;
 
-       sdi  = transfer->user_data;
+       sdi = transfer->user_data;
        devc = sdi->priv;
-       acq  = devc->acquisition;
+       acq = devc->acquisition;
 
        if (transfer->status != LIBUSB_TRANSFER_COMPLETED) {
                sr_err("Transfer from device failed (state %d): %s.",
@@ -457,7 +457,7 @@ static int init_acquisition_state(const struct sr_dev_inst *sdi)
        struct acquisition_state *acq;
 
        devc = sdi->priv;
-       usb  = sdi->conn;
+       usb = sdi->conn;
 
        if (devc->acquisition) {
                sr_err("Acquisition still in progress?");
index 3f896523c8bc1f9c0927c7d81144e991ab30e8df..f450547ec6b664b00d75a2ec6507eb2ab84b38fd 100644 (file)
@@ -43,7 +43,7 @@ struct dev_context {
        struct sr_sw_limits sw_limits;
 
        /* Operational state */
-       enum optarif optarif;     /**< The device mode (which measures are reported) */
+       enum optarif optarif; /**< The device mode (which measures are reported) */
 
        /* Temporary state across callbacks */
        uint8_t buf[TELEINFO_BUF_SIZE];
index 2f44eaad16cad319102a7530ccc671b2e2ee9996..90f589d73ecc019b77dd0bc0a4cd0d990e957d99 100644 (file)
@@ -174,7 +174,7 @@ static int dev_close(struct sr_dev_inst *sdi)
 
        usb = sdi->conn;
        if (!usb->devhdl)
-               /*  Nothing to do. */
+               /* Nothing to do. */
                return SR_OK;
 
        libusb_release_interface(usb->devhdl, 0);
index cf8851918b4edf20a29ffcb3889ba7d0c8fa4cf9..063544e854433bd743f98d2833998e2683930e2e 100644 (file)
@@ -175,7 +175,7 @@ SR_PRIV int tondaj_sl_814_receive_data(int fd, int revents, void *cb_data)
        } else if (devc->state == GET_PACKET) {
                /* Read a packet from the device. */
                ret = serial_read_nonblocking(serial, devc->buf + devc->buflen,
-                                 4 - devc->buflen);
+                               4 - devc->buflen);
                if (ret < 0) {
                        sr_err("Error reading packet: %d.", ret);
                        return TRUE;
index 2dab1be44a45154701e0a100e135174a627e602c..6176a460ed1f5a5b5486d0d1640a257e5230dadc 100644 (file)
@@ -165,7 +165,7 @@ static int dev_acquisition_start(const struct sr_dev_inst *sdi)
        std_session_send_df_header(sdi);
 
        sr_session_source_add(sdi->session, -1, 0, 10 /* poll_timeout */,
-                     uni_t_dmm_receive_data, (void *)sdi);
+                       uni_t_dmm_receive_data, (void *)sdi);
 
        return SR_OK;
 }
@@ -181,7 +181,7 @@ static int dev_acquisition_stop(struct sr_dev_inst *sdi)
 
 #define DMM(ID, CHIPSET, VENDOR, MODEL, BAUDRATE, PACKETSIZE, \
                        VALID, PARSE, DETAILS) \
-    &((struct dmm_info) { \
+       &((struct dmm_info) { \
                { \
                        .name = ID, \
                        .longname = VENDOR " " MODEL, \
index 8e84c2c109aaa1ab1426a053b2c3aebf13eb4d3f..da53be9e6161afa10f1da758a711b76b3a8ad2a5 100644 (file)
@@ -134,7 +134,7 @@ static int dev_close(struct sr_dev_inst *sdi)
 
        usb = sdi->conn;
        if (!usb->devhdl)
-               /*  Nothing to do. */
+               /* Nothing to do. */
                return SR_OK;
 
        libusb_release_interface(usb->devhdl, USB_INTERFACE);
index a2bad3306ac5c89b561e37bedd909f8a65ad81bb..969ccfa65d3a4212cd8759914899d1b422706cae 100644 (file)
@@ -38,7 +38,7 @@
 #define EP_OUT 2
 
 enum {
-    DATA_SOURCE_LIVE,
+       DATA_SOURCE_LIVE,
        DATA_SOURCE_MEMORY,
 };
 
index b55020433f2554a66ecc831b71359f0be3c70eb6..ff0302d913ef9d9574bb24eb9e7ceff2270362ea 100644 (file)
@@ -31,6 +31,7 @@
 #define VICTOR_VENDOR "Victor"
 #define VICTOR_INTERFACE 0
 #define VICTOR_ENDPOINT (LIBUSB_ENDPOINT_IN | 1)
+
 static int dev_acquisition_stop(struct sr_dev_inst *sdi);
 
 static const uint32_t drvopts[] = {
@@ -133,7 +134,7 @@ static int dev_close(struct sr_dev_inst *sdi)
        usb = sdi->conn;
 
        if (!usb->devhdl)
-               /*  Nothing to do. */
+               /* Nothing to do. */
                return SR_OK;
 
        libusb_release_interface(usb->devhdl, VICTOR_INTERFACE);
index 5c9866e412a14bcba7a23fe9ac5759f3103c8bf5..bd2f33f0913969342b449258b397fc18b3b074d2 100644 (file)
@@ -207,8 +207,8 @@ static const struct scope_config scope_models[] = {
                .num_ydivs = 8,
        },
        {
-               .model_id    = {"710110",  "710120",  "710130",  NULL},
-               .model_name  = {"DLM2024", "DLM2034", "DLM2054", NULL},
+               .model_id   = {"710110",  "710120",  "710130",  NULL},
+               .model_name = {"DLM2024", "DLM2034", "DLM2054", NULL},
                .analog_channels = 4,
                .digital_channels = 8,
                .pods = 1,
@@ -224,9 +224,9 @@ static const struct scope_config scope_models[] = {
        },
        {
                .model_id   = {"701307", "701308",  "701310", "701311",
-                               "701312", "701313",  NULL},
+                              "701312", "701313",  NULL},
                .model_name = {"DL9040", "DL9040L", "DL9140", "DL9140L",
-                               "DL9240", "DL9240L", NULL},
+                              "DL9240", "DL9240L", NULL},
                .analog_channels = 4,
                .digital_channels = 0,
                .pods = 0,
index aa5643ab7e80626dbc43340b5e2aa02e259899d4..321b17c0ed54f11a56c2ac09cf6f8d1e0e0240ba 100644 (file)
@@ -420,7 +420,7 @@ SR_PRIV void analyzer_read_start(libusb_device_handle *devh)
 }
 
 SR_PRIV int analyzer_read_data(libusb_device_handle *devh, void *buffer,
-                      unsigned int size)
+               unsigned int size)
 {
        return gl_read_bulk(devh, buffer, size);
 }
@@ -555,7 +555,7 @@ SR_PRIV void analyzer_add_filter(int channel, int type)
        }
 
        g_filter_status[i] |=
-           1 << ((2 * channel) + (type == FILTER_LOW ? 1 : 0));
+               1 << ((2 * channel) + (type == FILTER_LOW ? 1 : 0));
 
        g_filter_enable = 1;
 }
index 41a1eed84dcf7a190eae9ab63f8f2d6cd10b306f..29f2c29229f311e69f08ea447396eaafbfa844e2 100644 (file)
@@ -77,7 +77,7 @@
 SR_PRIV void analyzer_set_freq(int freq, int scale);
 SR_PRIV void analyzer_set_ramsize_trigger_address(unsigned int address);
 SR_PRIV void analyzer_set_triggerbar_address(unsigned int address);
-SR_PRIV unsigned int  analyzer_get_ramsize_trigger_address(void );
+SR_PRIV unsigned int analyzer_get_ramsize_trigger_address(void );
 SR_PRIV unsigned int analyzer_get_triggerbar_address(void);
 SR_PRIV void analyzer_set_compression(unsigned int type);
 SR_PRIV void analyzer_set_memory_size(unsigned int size);
@@ -99,7 +99,7 @@ SR_PRIV void analyzer_initialize(libusb_device_handle *devh);
 SR_PRIV void analyzer_wait(libusb_device_handle *devh, int set, int unset);
 SR_PRIV void analyzer_read_start(libusb_device_handle *devh);
 SR_PRIV int analyzer_read_data(libusb_device_handle *devh, void *buffer,
-                              unsigned int size);
+               unsigned int size);
 SR_PRIV void analyzer_read_stop(libusb_device_handle *devh);
 SR_PRIV void analyzer_start(libusb_device_handle *devh);
 SR_PRIV void analyzer_configure(libusb_device_handle *devh);
index dc9f2dead0f06775e667d3bcb0b12d6fa0190116..3d0c3a41a2107d741ba107f9ddeb079ec9940003 100644 (file)
@@ -413,10 +413,10 @@ static int config_list(uint32_t key, GVariant **data, const struct sr_dev_inst *
        case SR_CONF_DEVICE_OPTIONS:
                if (!sdi) {
                        *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
-                                                         drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
+                               drvopts, ARRAY_SIZE(drvopts), sizeof(uint32_t));
                } else {
                        *data = g_variant_new_fixed_array(G_VARIANT_TYPE_UINT32,
-                                                         devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
+                               devopts, ARRAY_SIZE(devopts), sizeof(uint32_t));
                }
                break;
        case SR_CONF_SAMPLERATE:
index 0d662f65dd1792e344105e90700f88c03f2f0472..9899473f43d57281bc9ec91323005b6aece0b0d2 100644 (file)
@@ -92,9 +92,10 @@ static int gl_read_data(libusb_device_handle *devh)
 SR_PRIV int gl_read_bulk(libusb_device_handle *devh, void *buffer,
                         unsigned int size)
 {
-       unsigned char packet[8] =
-           { 0, 0, 0, 0, size & 0xff, (size & 0xff00) >> 8,
-             (size & 0xff0000) >> 16, (size & 0xff000000) >> 24 };
+       unsigned char packet[8] = {
+               0, 0, 0, 0, size & 0xff, (size & 0xff00) >> 8,
+               (size & 0xff0000) >> 16, (size & 0xff000000) >> 24
+       };
        int ret, transferred = 0;
 
        ret = libusb_control_transfer(devh, CTRL_OUT, 0x4, REQ_READBULK,
index c23e761a143bafad6fa611b667ba4fbb9863ca37..ab2210104fbe72ac6c82100253516fbcd266b65f 100644 (file)
@@ -553,9 +553,12 @@ SR_PRIV void sr_hw_cleanup_all(const struct sr_context *ctx)
        }
 }
 
-/** Allocate struct sr_config.
- *  A floating reference can be passed in for data.
- *  @private
+/**
+ * Allocate struct sr_config.
+ *
+ * A floating reference can be passed in for data.
+ *
+ * @private
  */
 SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data)
 {
@@ -568,8 +571,10 @@ SR_PRIV struct sr_config *sr_config_new(uint32_t key, GVariant *data)
        return src;
 }
 
-/** Free struct sr_config.
- *  @private
+/**
+ * Free struct sr_config.
+ *
+ * @private
  */
 SR_PRIV void sr_config_free(struct sr_config *src)
 {
@@ -680,7 +685,7 @@ static int check_key(const struct sr_dev_driver *driver,
  *            Otherwise it must be NULL. If sdi is != NULL, sdi->priv must
  *            also be != NULL.
  * @param[in] cg The channel group on the device for which to list the
- *                    values, or NULL.
+ *               values, or NULL.
  * @param[in] key The configuration key (SR_CONF_*).
  * @param[in,out] data Pointer to a GVariant where the value will be stored.
  *             Must not be NULL. The caller is given ownership of the GVariant
@@ -691,8 +696,8 @@ static int check_key(const struct sr_dev_driver *driver,
  * @retval SR_OK Success.
  * @retval SR_ERR Error.
  * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
- *          interpreted as an error by the caller; merely as an indication
- *          that it's not applicable.
+ *         interpreted as an error by the caller; merely as an indication
+ *         that it's not applicable.
  *
  * @since 0.3.0
  */
@@ -742,8 +747,8 @@ SR_API int sr_config_get(const struct sr_dev_driver *driver,
  * @retval SR_OK Success.
  * @retval SR_ERR Error.
  * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
- *          interpreted as an error by the caller; merely as an indication
- *          that it's not applicable.
+ *         interpreted as an error by the caller; merely as an indication
+ *         that it's not applicable.
  *
  * @since 0.3.0
  */
@@ -814,8 +819,8 @@ SR_API int sr_config_commit(const struct sr_dev_inst *sdi)
  * @retval SR_OK Success.
  * @retval SR_ERR Error.
  * @retval SR_ERR_ARG The driver doesn't know that key, but this is not to be
- *          interpreted as an error by the caller; merely as an indication
- *          that it's not applicable.
+ *         interpreted as an error by the caller; merely as an indication
+ *         that it's not applicable.
  *
  * @since 0.3.0
  */
index 4984edb0b0aa37b9d8145cf9acda08e01ea981dd..91e4d3c434e45cdcfa65b3597e2f16c8476af9cc 100644 (file)
@@ -29,9 +29,9 @@
 
 #define LOG_PREFIX "input/binary"
 
-#define MAX_CHUNK_SIZE        4096
-#define DEFAULT_NUM_CHANNELS  8
-#define DEFAULT_SAMPLERATE    0
+#define MAX_CHUNK_SIZE       4096
+#define DEFAULT_NUM_CHANNELS 8
+#define DEFAULT_SAMPLERATE   0
 
 struct context {
        gboolean started;
index 1eb20bff72691bbf97ccf9bc8b0a637d47a76cd0..8d151fdc93818422e4a7916dab04f25c84f3172e 100644 (file)
@@ -89,7 +89,7 @@ struct context {
        /* Comment prefix character(s). */
        GString *comment;
 
-       /* Termination  character(s) used in current stream. */
+       /* Termination character(s) used in current stream. */
        char *termination;
 
        /* Determines if sample data is stored in multiple columns. */
index 9c7135f0622aacfd9a6b2177f3ce316f53d66bad..95b1d669ee0d5b51a2278ec4e8b14c625bc6fdaf 100644 (file)
@@ -31,9 +31,9 @@
 #define LOG_PREFIX "input/raw_analog"
 
 /* How many bytes at a time to process and send to the session bus. */
-#define CHUNK_SIZE 4096
-#define DEFAULT_NUM_CHANNELS  1
-#define DEFAULT_SAMPLERATE    0
+#define CHUNK_SIZE             4096
+#define DEFAULT_NUM_CHANNELS   1
+#define DEFAULT_SAMPLERATE     0
 
 struct context {
        gboolean started;
index a9b1ca4f53e09c9b3a02eeed912bbf8174c8291a..8cbd4d0721d9da1c52ff5d1b099340feed1111be 100644 (file)
@@ -50,7 +50,7 @@
 #define MAX_POD_COUNT     12
 #define HEADER_SIZE       80
 
-#define TIMESTAMP_RESOLUTION  ((double)0.000000000078125) /* 0.078125 ns */
+#define TIMESTAMP_RESOLUTION ((double)0.000000000078125) /* 0.078125 ns */
 
 /*
  * The resolution equals a sampling freq of 12.8 GHz. That's a bit high
@@ -79,7 +79,7 @@ enum {
 
 enum {
        AD_COMPR_NONE  = 0, /* File created with /NOCOMPRESS */
-       AD_COMPR_QCOMP = 6  /* File created with /COMPRESS or /QUICKCOMPRESS */
+       AD_COMPR_QCOMP = 6, /* File created with /COMPRESS or /QUICKCOMPRESS */
 };
 
 struct context {
@@ -253,8 +253,8 @@ static int process_header(GString *buf, struct context *inc)
 
        inc->device       = device_id;
        inc->trigger_timestamp = RL64(buf->str + 32);
-       inc->compression  = R8(buf->str + 48);        /* Maps to the enum. */
-       inc->record_mode  = R8(buf->str + 55);        /* Maps to the enum. */
+       inc->compression  = R8(buf->str + 48); /* Maps to the enum. */
+       inc->record_mode  = R8(buf->str + 55); /* Maps to the enum. */
        inc->record_size  = record_size;
        inc->record_count = RL32(buf->str + 60);
        inc->last_record  = RL32S(buf->str + 64);
index 3b8aba8206b71e64a048df2b1c7b3ed1b874de95..1f20033095e30066e46a9716a78f6f7a3c17e61c 100644 (file)
@@ -93,7 +93,7 @@ struct vcd_channel {
 
 /*
  * Reads a single VCD section from input file and parses it to name/contents.
- * e.g. $timescale 1ps $end  => "timescale" "1ps"
+ * e.g. $timescale 1ps $end => "timescale" "1ps"
  */
 static gboolean parse_section(GString *buf, gchar **name, gchar **contents)
 {
index 4f5744a7599d2841f98e958d38d11f7a398f3465..243fd4ca2d984451a8cf68e889e187a03a607c31 100644 (file)
@@ -31,7 +31,7 @@
 #define LOG_PREFIX "input/wav"
 
 /* How many bytes at a time to process and send to the session bus. */
-#define CHUNK_SIZE 4096
+#define CHUNK_SIZE               4096
 
 /* Minimum size of header + 1 8-bit mono PCM sample. */
 #define MIN_DATA_CHUNK_OFFSET    45
index cd901366841b3dfe1a53495dac64786bf2a2cfa0..9412ff46e8ac8a09c469386ade2e7a4a236d23af 100644 (file)
@@ -490,21 +490,21 @@ static void parse_measurement(const uint8_t *pkt, float *floatval,
                int unit;
                int exponent;
        } units[] = {
-               { SR_UNIT_UNITLESS,   0 },      /* no unit */
-               { SR_UNIT_OHM,        0 },      /* Ohm     */
-               { SR_UNIT_OHM,        3 },      /* kOhm    */
-               { SR_UNIT_OHM,        6 },      /* MOhm    */
-               { -1,                 0 },      /* ???     */
-               { SR_UNIT_HENRY,     -6 },      /* uH      */
-               { SR_UNIT_HENRY,     -3 },      /* mH      */
-               { SR_UNIT_HENRY,      0 },      /* H       */
-               { SR_UNIT_HENRY,      3 },      /* kH      */
-               { SR_UNIT_FARAD,    -12 },      /* pF      */
-               { SR_UNIT_FARAD,     -9 },      /* nF      */
-               { SR_UNIT_FARAD,     -6 },      /* uF      */
-               { SR_UNIT_FARAD,     -3 },      /* mF      */
-               { SR_UNIT_PERCENTAGE, 0 },      /* %       */
-               { SR_UNIT_DEGREE,     0 },      /* degree  */
+               { SR_UNIT_UNITLESS,   0 }, /* no unit */
+               { SR_UNIT_OHM,        0 }, /* Ohm */
+               { SR_UNIT_OHM,        3 }, /* kOhm */
+               { SR_UNIT_OHM,        6 }, /* MOhm */
+               { -1,                 0 }, /* ??? */
+               { SR_UNIT_HENRY,     -6 }, /* uH */
+               { SR_UNIT_HENRY,     -3 }, /* mH */
+               { SR_UNIT_HENRY,      0 }, /* H */
+               { SR_UNIT_HENRY,      3 }, /* kH */
+               { SR_UNIT_FARAD,    -12 }, /* pF */
+               { SR_UNIT_FARAD,     -9 }, /* nF */
+               { SR_UNIT_FARAD,     -6 }, /* uF */
+               { SR_UNIT_FARAD,     -3 }, /* mF */
+               { SR_UNIT_PERCENTAGE, 0 }, /* % */
+               { SR_UNIT_DEGREE,     0 }, /* degree */
        };
        const uint8_t *buf;
        int digits, exponent;
index 2e196074efb62aaaeca8159100c958e80e34cee1..0856c48013ad95eae0ecc3f6e9b1894a0d26a8c0 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** @file
-  * @internal
-  */
+/**
+ * @file
+ *
+ * @internal
+ */
 
 #ifndef LIBSIGROK_LIBSIGROK_INTERNAL_H
 #define LIBSIGROK_LIBSIGROK_INTERNAL_H
@@ -428,9 +430,9 @@ struct sr_input_module {
         * @retval SR_OK This module knows the format.
         * @retval SR_ERR_NA There wasn't enough data for this module to
         *   positively identify the format.
-        * @retval SR_ERR_DATA This module knows the format, but cannot handle it.
-        *   This means the stream is either corrupt, or indicates a feature
-        *   that the module does not support.
+        * @retval SR_ERR_DATA This module knows the format, but cannot handle
+        *   it. This means the stream is either corrupt, or indicates a
+        *   feature that the module does not support.
         * @retval SR_ERR This module does not know the format.
         */
        int (*format_match) (GHashTable *metadata);
@@ -468,16 +470,16 @@ struct sr_input_module {
         */
        int (*end) (struct sr_input *in);
 
-        /**
-         * Reset the input module's input handling structures.
-         *
-         * Causes the input module to reset its internal state so that we can
-         * re-send the input data from the beginning without having to
-         * re-create the entire input module.
-         *
-         * @retval SR_OK Success.
-         * @retval other Negative error code.
-         */
+       /**
+        * Reset the input module's input handling structures.
+        *
+        * Causes the input module to reset its internal state so that we can
+        * re-send the input data from the beginning without having to
+        * re-create the entire input module.
+        *
+        * @retval SR_OK Success.
+        * @retval other Negative error code.
+        */
        int (*reset) (struct sr_input *in);
 
        /**
@@ -495,7 +497,7 @@ struct sr_input_module {
 
 /** Output module instance. */
 struct sr_output {
-       /** A pointer to this output's module.  */
+       /** A pointer to this output's module. */
        const struct sr_output_module *module;
 
        /**
@@ -612,7 +614,7 @@ struct sr_output_module {
 
 /** Transform module instance. */
 struct sr_transform {
-       /** A pointer to this transform's module.  */
+       /** A pointer to this transform's module. */
        const struct sr_transform_module *module;
 
        /**
index bd8c834495b2b0ee0eb3be75318505242341aa44..3c660a185f7c096a19beebd894466e5854f867bb 100644 (file)
@@ -29,7 +29,7 @@ SR_PRIV extern const struct sr_modbus_dev_inst modbus_serial_rtu_dev;
 
 static const struct sr_modbus_dev_inst *modbus_devs[] = {
 #ifdef HAVE_LIBSERIALPORT
-       &modbus_serial_rtu_dev,  /* Must be last as it matches any resource. */
+       &modbus_serial_rtu_dev, /* Must be last as it matches any resource. */
 #endif
 };
 
index cc67bd9e95cbb23f3771e1893f9655bb28896d47..ba9acf9d5e99fb16cdd9771deb96b6464c3dd980 100644 (file)
@@ -182,7 +182,7 @@ static int receive(const struct sr_output *o, const struct sr_datafeed_packet *p
                                        /* Flush line buffers. */
                                        g_string_append_len(*out, ctx->lines[j]->str, ctx->lines[j]->len);
                                        g_string_append_c(*out, '\n');
-                                       if (j == ctx->num_enabled_channels  - 1 && ctx->trigger > -1) {
+                                       if (j == ctx->num_enabled_channels - 1 && ctx->trigger > -1) {
                                                offset = ctx->trigger + ctx->trigger / 8;
                                                g_string_append_printf(*out, "T:%*s^ %d\n", offset, "", ctx->trigger);
                                                ctx->trigger = -1;
index 71cbd95a99a965d04722d29c905f28e0b67e58d4..f486803305ea58b4bddc29f0f1975d73cf06a1fb 100644 (file)
@@ -167,7 +167,7 @@ static int receive(const struct sr_output *o, const struct sr_datafeed_packet *p
                                        /* Flush line buffers. */
                                        g_string_append_len(*out, ctx->lines[j]->str, ctx->lines[j]->len);
                                        g_string_append_c(*out, '\n');
-                                       if (j == ctx->num_enabled_channels  - 1 && ctx->trigger > -1) {
+                                       if (j == ctx->num_enabled_channels - 1 && ctx->trigger > -1) {
                                                offset = ctx->trigger + ctx->trigger / 8;
                                                g_string_append_printf(*out, "T:%*s^ %d\n", offset, "", ctx->trigger);
                                                ctx->trigger = -1;
index b554558534a3587bf81d99d4e691f5b3ad03cc6e..43dbd16b0a05da2f852ada1d4c9d57d46dc4ddce 100644 (file)
@@ -339,7 +339,7 @@ static int zip_append_analog(const struct sr_output *o,
                if (outc->analog_index_map[index] == channel->index)
                        break;
        if (outc->analog_index_map[index] == -1)
-               return SR_ERR_ARG;  /* Channel index was not in the list */
+               return SR_ERR_ARG; /* Channel index was not in the list */
 
        index += outc->first_analog_index;
 
index b921d93da8df5ecef1849460f2f3df8d8b3aae0e..c87e7be0b7bc2626f2c61d6d0f3ed3edd8f4ae4b 100644 (file)
@@ -224,15 +224,15 @@ SR_API int sr_resource_set_hooks(struct sr_context *ctx,
                return SR_ERR_ARG;
        }
        if (open_cb && close_cb && read_cb) {
-               ctx->resource_open_cb  = open_cb;
+               ctx->resource_open_cb = open_cb;
                ctx->resource_close_cb = close_cb;
-               ctx->resource_read_cb  = read_cb;
-               ctx->resource_cb_data  = cb_data;
+               ctx->resource_read_cb = read_cb;
+               ctx->resource_cb_data = cb_data;
        } else if (!open_cb && !close_cb && !read_cb) {
-               ctx->resource_open_cb  = &resource_open_default;
+               ctx->resource_open_cb = &resource_open_default;
                ctx->resource_close_cb = &resource_close_default;
-               ctx->resource_read_cb  = &resource_read_default;
-               ctx->resource_cb_data  = ctx;
+               ctx->resource_read_cb = &resource_read_default;
+               ctx->resource_cb_data = ctx;
        } else {
                sr_err("%s: inconsistent callback pointers.", __func__);
                return SR_ERR_ARG;
@@ -332,7 +332,7 @@ SR_PRIV gssize sr_resource_read(struct sr_context *ctx,
  * @param max_size Size limit. Error out if the resource is larger than this.
  *
  * @return A buffer containing the resource data, or NULL on failure. Must
- *  be freed by the caller using g_free().
+ *         be freed by the caller using g_free().
  *
  * @private
  */
index e54427ff0b3445c107a0e46ee24cb1cb2fb4ac97..e4346e5db6d3fef19360e24367f291dd45f7b789 100644 (file)
@@ -90,7 +90,7 @@ static const struct sr_scpi_dev_inst *scpi_devs[] = {
        &scpi_libgpib_dev,
 #endif
 #ifdef HAVE_LIBSERIALPORT
-       &scpi_serial_dev,  /* must be last as it matches any resource */
+       &scpi_serial_dev, /* Must be last as it matches any resource. */
 #endif
 };
 
@@ -446,7 +446,7 @@ SR_PRIV int sr_scpi_get_data(struct sr_scpi_dev_inst *scpi,
                        sr_err("Incompletely read SCPI response.");
                        return SR_ERR;
                } else if (len > 0) {
-                       laststart = g_get_monotonic_time();
+                       laststart = g_get_monotonic_time();
                }
                offset += len;
                g_string_set_size(response, offset);
index e87f5e784fb1d0ab61b0eaac8f44b06091b04076..a4cb694239d303ca20a5242a13d25c63468b86ed 100644 (file)
@@ -66,8 +66,8 @@ static int scpi_tcp_dev_inst_new(void *priv, struct drv_context *drvc,
        }
 
        tcp->address = g_strdup(params[1]);
-       tcp->port    = g_strdup(params[2]);
-       tcp->socket  = -1;
+       tcp->port = g_strdup(params[2]);
+       tcp->socket = -1;
 
        return SR_OK;
 }
index 6e472750cb5d2f261227a9c2081f3f75c1ddb3ff..decafdb62af3c44b0635853d751694d0fb29eef8 100644 (file)
@@ -48,8 +48,8 @@ struct scpi_usbtmc_libusb {
 };
 
 /* Some USBTMC-specific enums, as defined in the USBTMC standard. */
-#define SUBCLASS_USBTMC  0x03
-#define USBTMC_USB488    0x01
+#define SUBCLASS_USBTMC 0x03
+#define USBTMC_USB488   0x01
 
 enum {
        /* USBTMC control requests */
@@ -85,16 +85,16 @@ enum {
 #define USB488_DEV_CAP_SCPI        0x08
 
 /* Bulk messages constants */
-#define USBTMC_BULK_HEADER_SIZE  12
+#define USBTMC_BULK_HEADER_SIZE 12
 
 /* Bulk MsgID values */
-#define DEV_DEP_MSG_OUT         1
-#define REQUEST_DEV_DEP_MSG_IN  2
-#define DEV_DEP_MSG_IN          2
+#define DEV_DEP_MSG_OUT        1
+#define REQUEST_DEV_DEP_MSG_IN 2
+#define DEV_DEP_MSG_IN         2
 
 /* bmTransferAttributes */
-#define EOM                0x01
-#define TERM_CHAR_ENABLED  0x02
+#define EOM               0x01
+#define TERM_CHAR_ENABLED 0x02
 
 struct usbtmc_blacklist {
        uint16_t vid;
@@ -103,10 +103,10 @@ struct usbtmc_blacklist {
 
 /* Devices that publish RL1 support, but don't support it. */
 static struct usbtmc_blacklist blacklist_remote[] = {
-       { 0x1ab1, 0x0588 },  /* Rigol DS1000 series */
-       { 0x1ab1, 0x04b0 },  /* Rigol DS2000 series */
-       { 0x0957, 0x0588 },  /* Agilent DSO1000 series (rebadged Rigol DS1000) */
-       { 0x0b21, 0xffff },  /* All Yokogawa devices */
+       { 0x1ab1, 0x0588 }, /* Rigol DS1000 series */
+       { 0x1ab1, 0x04b0 }, /* Rigol DS2000 series */
+       { 0x0957, 0x0588 }, /* Agilent DSO1000 series (rebadged Rigol DS1000) */
+       { 0x0b21, 0xffff }, /* All Yokogawa devices */
        ALL_ZERO
 };
 
@@ -218,14 +218,9 @@ static int scpi_usbtmc_remote(struct scpi_usbtmc_libusb *uscpi)
                return SR_OK;
 
        sr_dbg("Locking out local control.");
-       ret = libusb_control_transfer(usb->devhdl,
-                       LIBUSB_ENDPOINT_IN         |
-                       LIBUSB_REQUEST_TYPE_CLASS  |
-                       LIBUSB_RECIPIENT_INTERFACE,
-                       REN_CONTROL, 1,
-                       uscpi->interface,
-                       &status, 1,
-                       TRANSFER_TIMEOUT);
+       ret = libusb_control_transfer(usb->devhdl, LIBUSB_ENDPOINT_IN |
+               LIBUSB_REQUEST_TYPE_CLASS | LIBUSB_RECIPIENT_INTERFACE,
+               REN_CONTROL, 1, uscpi->interface, &status, 1, TRANSFER_TIMEOUT);
        if (ret < 0 || status != USBTMC_STATUS_SUCCESS) {
                if (ret < 0)
                        sr_dbg("Failed to enter REN state: %s.", libusb_error_name(ret));
@@ -234,14 +229,10 @@ static int scpi_usbtmc_remote(struct scpi_usbtmc_libusb *uscpi)
                return SR_ERR;
        }
 
-       ret = libusb_control_transfer(usb->devhdl,
-                       LIBUSB_ENDPOINT_IN         |
-                       LIBUSB_REQUEST_TYPE_CLASS  |
-                       LIBUSB_RECIPIENT_INTERFACE,
-                       LOCAL_LOCKOUT, 0,
-                       uscpi->interface,
-                       &status, 1,
-                       TRANSFER_TIMEOUT);
+       ret = libusb_control_transfer(usb->devhdl, LIBUSB_ENDPOINT_IN |
+               LIBUSB_REQUEST_TYPE_CLASS | LIBUSB_RECIPIENT_INTERFACE,
+               LOCAL_LOCKOUT, 0, uscpi->interface, &status, 1,
+               TRANSFER_TIMEOUT);
        if (ret < 0 || status != USBTMC_STATUS_SUCCESS) {
                if (ret < 0)
                        sr_dbg("Failed to enter local lockout state: %s.",
@@ -272,14 +263,9 @@ static void scpi_usbtmc_local(struct scpi_usbtmc_libusb *uscpi)
                return;
 
        sr_dbg("Returning local control.");
-       ret = libusb_control_transfer(usb->devhdl,
-                       LIBUSB_ENDPOINT_IN         |
-                       LIBUSB_REQUEST_TYPE_CLASS  |
-                       LIBUSB_RECIPIENT_INTERFACE,
-                       GO_TO_LOCAL, 0,
-                       uscpi->interface,
-                       &status, 1,
-                       TRANSFER_TIMEOUT);
+       ret = libusb_control_transfer(usb->devhdl, LIBUSB_ENDPOINT_IN |
+               LIBUSB_REQUEST_TYPE_CLASS | LIBUSB_RECIPIENT_INTERFACE,
+               GO_TO_LOCAL, 0, uscpi->interface, &status, 1, TRANSFER_TIMEOUT);
        if (ret < 0 || status != USBTMC_STATUS_SUCCESS) {
                if (ret < 0)
                        sr_dbg("Failed to clear local lockout state: %s.",
@@ -323,7 +309,7 @@ static int scpi_usbtmc_libusb_open(struct sr_scpi_dev_inst *scpi)
                for (intfidx = 0; intfidx < confdes->bNumInterfaces; intfidx++) {
                        intfdes = confdes->interface[intfidx].altsetting;
                        if (intfdes->bInterfaceClass    != LIBUSB_CLASS_APPLICATION ||
-                           intfdes->bInterfaceSubClass != SUBCLASS_USBTMC          ||
+                           intfdes->bInterfaceSubClass != SUBCLASS_USBTMC ||
                            intfdes->bInterfaceProtocol != USBTMC_USB488)
                                continue;
                        uscpi->interface = intfdes->bInterfaceNumber;
@@ -385,29 +371,25 @@ static int scpi_usbtmc_libusb_open(struct sr_scpi_dev_inst *scpi)
        }
 
        /* Get capabilities. */
-       ret = libusb_control_transfer(usb->devhdl,
-                                     LIBUSB_ENDPOINT_IN         |
-                                     LIBUSB_REQUEST_TYPE_CLASS  |
-                                     LIBUSB_RECIPIENT_INTERFACE,
-                                     GET_CAPABILITIES, 0,
-                                     uscpi->interface,
-                                     capabilities, sizeof(capabilities),
-                                     TRANSFER_TIMEOUT);
+       ret = libusb_control_transfer(usb->devhdl, LIBUSB_ENDPOINT_IN |
+               LIBUSB_REQUEST_TYPE_CLASS | LIBUSB_RECIPIENT_INTERFACE,
+               GET_CAPABILITIES, 0, uscpi->interface, capabilities,
+               sizeof(capabilities), TRANSFER_TIMEOUT);
        if (ret == sizeof(capabilities)) {
                uscpi->usbtmc_int_cap = capabilities[ 4];
                uscpi->usbtmc_dev_cap = capabilities[ 5];
                uscpi->usb488_dev_cap = capabilities[15];
        }
        sr_dbg("Device capabilities: %s%s%s%s%s, %s, %s",
-              uscpi->usb488_dev_cap & USB488_DEV_CAP_SCPI       ? "SCPI, "    : "",
-              uscpi->usbtmc_dev_cap & USBTMC_DEV_CAP_TERMCHAR   ? "TermChar, ": "",
-              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_LISTEN_ONLY? "L3, " :
-              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_TALK_ONLY  ? ""     : "L4, ",
-              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_TALK_ONLY  ? "T5, " :
-              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_LISTEN_ONLY? ""     : "T6, ",
-              uscpi->usb488_dev_cap & USB488_DEV_CAP_SR1        ? "SR1"  : "SR0",
-              uscpi->usb488_dev_cap & USB488_DEV_CAP_RL1        ? "RL1"  : "RL0",
-              uscpi->usb488_dev_cap & USB488_DEV_CAP_DT1        ? "DT1"  : "DT0");
+              uscpi->usb488_dev_cap & USB488_DEV_CAP_SCPI        ? "SCPI, "    : "",
+              uscpi->usbtmc_dev_cap & USBTMC_DEV_CAP_TERMCHAR    ? "TermChar, ": "",
+              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_LISTEN_ONLY ? "L3, " :
+              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_TALK_ONLY   ? ""     : "L4, ",
+              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_TALK_ONLY   ? "T5, " :
+              uscpi->usbtmc_int_cap & USBTMC_INT_CAP_LISTEN_ONLY ? ""     : "T6, ",
+              uscpi->usb488_dev_cap & USB488_DEV_CAP_SR1         ? "SR1"  : "SR0",
+              uscpi->usb488_dev_cap & USB488_DEV_CAP_RL1         ? "RL1"  : "RL0",
+              uscpi->usb488_dev_cap & USB488_DEV_CAP_DT1         ? "DT1"  : "DT0");
 
        scpi_usbtmc_remote(uscpi);
 
@@ -436,14 +418,14 @@ static void usbtmc_bulk_out_header_write(void *header, uint8_t MsgID,
                                          uint8_t bmTransferAttributes,
                                          char TermChar)
 {
-         W8(header+ 0, MsgID);
-         W8(header+ 1, bTag);
-         W8(header+ 2, ~bTag);
-         W8(header+ 3, 0);
-       WL32(header+ 4, TransferSize);
-         W8(header+ 8, bmTransferAttributes);
-         W8(header+ 9, TermChar);
-       WL16(header+10, 0);
+         W8(header +  0, MsgID);
+         W8(header +  1, bTag);
+         W8(header +  2, ~bTag);
+         W8(header +  3, 0);
+       WL32(header +  4, TransferSize);
+         W8(header +  8, bmTransferAttributes);
+         W8(header +  9, TermChar);
+       WL16(header + 10, 0);
 }
 
 static int usbtmc_bulk_in_header_read(void *header, uint8_t MsgID,
@@ -451,14 +433,15 @@ static int usbtmc_bulk_in_header_read(void *header, uint8_t MsgID,
                                       int32_t *TransferSize,
                                       uint8_t *bmTransferAttributes)
 {
-       if (R8(header+0) != MsgID ||
-           R8(header+1) != bTag  ||
-           R8(header+2) != (unsigned char)~bTag)
+       if (R8(header + 0) != MsgID ||
+           R8(header + 1) != bTag  ||
+           R8(header + 2) != (unsigned char)~bTag)
                return SR_ERR;
        if (TransferSize)
-               *TransferSize = RL32(header+4);
+               *TransferSize = RL32(header + 4);
        if (bmTransferAttributes)
-               *bmTransferAttributes = R8(header+8);
+               *bmTransferAttributes = R8(header + 8);
+
        return SR_OK;
 }
 
@@ -469,23 +452,23 @@ static int scpi_usbtmc_bulkout(struct scpi_usbtmc_libusb *uscpi,
        struct sr_usb_dev_inst *usb = uscpi->usb;
        int padded_size, ret, transferred;
 
-       if (data && size+USBTMC_BULK_HEADER_SIZE+3 > (int)sizeof(uscpi->buffer)) {
+       if (data && (size + USBTMC_BULK_HEADER_SIZE + 3) > (int)sizeof(uscpi->buffer)) {
                sr_err("USBTMC bulk out transfer is too big.");
                return SR_ERR;
        }
 
        uscpi->bTag++;
-       uscpi->bTag += !uscpi->bTag;  /* bTag == 0 is invalid so avoid it. */
+       uscpi->bTag += !uscpi->bTag; /* bTag == 0 is invalid so avoid it. */
 
        usbtmc_bulk_out_header_write(uscpi->buffer, msg_id, uscpi->bTag,
                                     size, transfer_attributes, 0);
        if (data)
-               memcpy(uscpi->buffer+USBTMC_BULK_HEADER_SIZE, data, size);
+               memcpy(uscpi->buffer + USBTMC_BULK_HEADER_SIZE, data, size);
        else
                size = 0;
        size += USBTMC_BULK_HEADER_SIZE;
        padded_size = (size + 3) & ~0x3;
-       memset(uscpi->buffer+size, 0, padded_size - size);
+       memset(uscpi->buffer + size, 0, padded_size - size);
 
        ret = libusb_bulk_transfer(usb->devhdl, uscpi->bulk_out_ep,
                                   uscpi->buffer, padded_size, &transferred,
index 27244da34b6513c6e0cc4b9461fd4d417b3f652b..aa8d4ddedf3b383fadbdf06bedbe062ba67f24c4 100644 (file)
@@ -55,7 +55,7 @@
  *
  * @param serial Previously initialized serial port structure.
  * @param[in] flags Flags to use when opening the serial port. Possible flags
- *              include SERIAL_RDWR, SERIAL_RDONLY.
+ *                  include SERIAL_RDWR, SERIAL_RDONLY.
  *
  * If the serial structure contains a serialcomm string, it will be
  * passed to serial_set_paramstr() after the port is opened.
@@ -360,8 +360,8 @@ static int _serial_read(struct sr_serial_dev_inst *serial, void *buf,
  * @param[in] timeout_ms Timeout in ms, or 0 for no timeout.
  *
  * @retval SR_ERR_ARG Invalid argument.
- * @retval SR_ERR     Other error.
- * @retval other      The number of bytes read. If this is less than the number
+ * @retval SR_ERR Other error.
+ * @retval other The number of bytes read. If this is less than the number
  * requested, the timeout was reached.
  *
  * @private
@@ -381,8 +381,8 @@ SR_PRIV int serial_read_blocking(struct sr_serial_dev_inst *serial, void *buf,
  * @param[in] count The number of bytes to read.
  *
  * @retval SR_ERR_ARG Invalid argument.
- * @retval SR_ERR     Other error.
- * @retval other      The number of bytes read.
+ * @retval SR_ERR Other error.
+ * @retval other The number of bytes read.
  *
  * @private
  */
@@ -401,7 +401,7 @@ SR_PRIV int serial_read_nonblocking(struct sr_serial_dev_inst *serial, void *buf
  * @param[in] parity The parity setting to use (0 = none, 1 = even, 2 = odd).
  * @param[in] stopbits The number of stop bits to use (1 or 2).
  * @param[in] flowcontrol The flow control settings to use (0 = none,
- *                      1 = RTS/CTS, 2 = XON/XOFF).
+ *                        1 = RTS/CTS, 2 = XON/XOFF).
  * @param[in] rts Status of RTS line (0 or 1; required by some interfaces).
  * @param[in] dtr Status of DTR line (0 or 1; required by some interfaces).
  *
@@ -477,7 +477,7 @@ SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
  * @param serial Previously initialized serial port structure.
  * @param[in] paramstr A serial communication parameters string of the form
  * "<baudrate>/<bits><parity><stopbits>{/<option>}".\n
- *  Examples: "9600/8n1", "600/7o2/dtr=1/rts=0" or "460800/8n1/flow=2".\n
+ * Examples: "9600/8n1", "600/7o2/dtr=1/rts=0" or "460800/8n1/flow=2".\n
  * \<baudrate\>=integer Baud rate.\n
  * \<bits\>=5|6|7|8 Number of data bits.\n
  * \<parity\>=n|e|o None, even, odd.\n
@@ -666,10 +666,10 @@ SR_PRIV int serial_readline(struct sr_serial_dev_inst *serial, char **buf,
  * @param[in] packet_size Size, in bytes, of a valid packet.
  * @param is_valid Callback that assesses whether the packet is valid or not.
  * @param[in] timeout_ms The timeout after which, if no packet is detected, to
- *                   abort scanning.
+ *                       abort scanning.
  * @param[in] baudrate The baudrate of the serial port. This parameter is not
- *                 critical, but it helps fine tune the serial port polling
- *                 delay.
+ *                     critical, but it helps fine tune the serial port polling
+ *                     delay.
  *
  * @retval SR_OK Valid packet was found within the given timeout.
  * @retval SR_ERR Failure.
index a325371aa5e4709cdab84ebe33b6c696dcfe2fa6..643500f169ee50b88f24045867ff4c81182bf455 100644 (file)
--- a/src/std.c
+++ b/src/std.c
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-/** @file
-  * Standard API helper functions.
-  * @internal
-  */
+/**
+ * @file
+ *
+ * Standard API helper functions.
+ *
+ * @internal
+ */
 
 #include <config.h>
 #include <glib.h>
index 62e9c688d6b87d3e419788ddac69a1f2294e8c23..bea14692749a679f6be57c0cf2451b769ac4a856 100644 (file)
@@ -126,7 +126,7 @@ SR_PRIV void sr_sw_limits_acquisition_start(struct sr_sw_limits *limits)
  *
  * @param limits software limits instance
  * @returns TRUE if any of the software limits has been reached and the driver
- *   should stop data acquisition, otherwise FALSE.
+ *               should stop data acquisition, otherwise FALSE.
  */
 SR_PRIV gboolean sr_sw_limits_check(struct sr_sw_limits *limits)
 {
index 8a800b8607837c45256de09f37783f08a944fc7b..c8e13d2f610ef0ec9dadbc97c7853e7832c2bcc3 100644 (file)
@@ -24,7 +24,7 @@
 /* * @cond PRIVATE */
 #define LOG_PREFIX "trigger"
 /* * @endcond */
-   
+
 /**
  * @file
  *