]> sigrok.org Git - libsigrok.git/blobdiff - src/dmm/m2110.c
dtm0660: properly set encoding digits
[libsigrok.git] / src / dmm / m2110.c
index 8f094a5c8144196e243214118d24f60f0ccad50f..93887dcc804b1b6863d5eadfef14c3fdf9d1468c 100644 (file)
@@ -25,6 +25,7 @@
  * Most probably the simplest multimeter protocol ever ;-) .
  */
 
+#include <config.h>
 #include <string.h>
 #include <math.h>
 #include <glib.h>
@@ -57,9 +58,9 @@ SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval,
        (void)info;
 
        /* 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;
+       analog->meaning->mq = SR_MQ_GAIN;
+       analog->meaning->unit = SR_UNIT_UNITLESS;
+       analog->meaning->mqflags = 0;
 
        if (!strncmp((const char *)buf, "OVERRNG", 7))
                *floatval = INFINITY;