X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fcommon%2Fdmm%2Fm2110.c;h=9184ab4fa9475114f1e66f815d1ba15cb958d6a9;hb=95ecc765463462938200cf5cbcffba663f893c29;hp=1461f627d8c8cf727a338d650b1cf81f341a3ee0;hpb=825da8b20f8eb879cd6b3e7911b4aa7b35a5b9ed;p=libsigrok.git diff --git a/hardware/common/dmm/m2110.c b/hardware/common/dmm/m2110.c index 1461f627..9184ab4f 100644 --- a/hardware/common/dmm/m2110.c +++ b/hardware/common/dmm/m2110.c @@ -17,20 +17,20 @@ * along with this program. If not, see . */ -/** \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 #include #include #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;