]> sigrok.org Git - libsigrok.git/commitdiff
bbcgm-m2110: Minor cosmetics.
authorUwe Hermann <redacted>
Wed, 18 Dec 2013 23:31:26 +0000 (00:31 +0100)
committerUwe Hermann <redacted>
Wed, 18 Dec 2013 23:40:31 +0000 (00:40 +0100)
hardware/common/dmm/m2110.c
hardware/serial-dmm/protocol.h

index 1461f627d8c8cf727a338d650b1cf81f341a3ee0..9184ab4fa9475114f1e66f815d1ba15cb958d6a9 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-/** \file
- *  BBC Goerz Metrawatt M2110 ASCII protocol parser.
+/**
+ * @file
  *
- *  Most probably the simplest multimeter protocol ever ;-) .
+ * BBC Goerz Metrawatt M2110 ASCII protocol parser.
+ *
+ * Most probably the simplest multimeter protocol ever ;-) .
  */
 
-
 #include <string.h>
 #include <math.h>
 #include <glib.h>
 #include "libsigrok.h"
 #include "libsigrok-internal.h"
 
-
 /* Message logging helpers with subsystem-specific prefix string. */
 #define LOG_PREFIX "bbcgm-m2110: "
 #define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
@@ -47,10 +47,10 @@ SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf)
        if ((buf[7] != '\r') || (buf[8] != '\n'))
                return FALSE;
 
-       if (!strncmp((const char*)buf, "OVERRNG", 7))
+       if (!strncmp((const char *)buf, "OVERRNG", 7))
                return TRUE;
 
-       if (sscanf((const char*)buf, "%f", &val) == 1)
+       if (sscanf((const char *)buf, "%f", &val) == 1)
                return TRUE;
        else
                return FALSE;
@@ -63,14 +63,14 @@ SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval,
 
        (void)info;
 
-       analog->mq = SR_MQ_GAIN; /* We don't know the unit, so that's the best we can do.*/
+       /* We don't know the unit, so that's the best we can do. */
+       analog->mq = SR_MQ_GAIN;
        analog->unit = SR_UNIT_UNITLESS;
        analog->mqflags = 0;
 
-       if (!strncmp((const char*)buf, "OVERRNG", 7)) {
+       if (!strncmp((const char *)buf, "OVERRNG", 7))
                *floatval = INFINITY;
-       }
-       else if (sscanf((const char*)buf, "%f", &val) == 1)
+       else if (sscanf((const char *)buf, "%f", &val) == 1)
                *floatval = val;
 
        return SR_OK;
index e24c8ab4dcc62d9cd4ef44793e06f825517d26e4..57d5ea19d471aeddc401b285ef220617b4bad568 100644 (file)
@@ -61,15 +61,15 @@ enum {
 #define DMM_COUNT 25
 
 struct dmm_info {
-       /** Manufacturer/brand */
+       /** Manufacturer/brand. */
        char *vendor;
-       /** Model */
+       /** Model. */
        char *device;
-       /** serialconn string */
+       /** serialconn string. */
        char *conn;
-       /** Baud rate */
+       /** Baud rate. */
        uint32_t baudrate;
-       /** Packet size [bytes]. */
+       /** Packet size in bytes. */
        int packet_size;
        /** Packet request function. */
        int (*packet_request)(struct sr_serial_dev_inst *);