X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fdmm%2Fm2110.c;h=4f3af6940c062e2a9a28aa12e09a14f2fab9f613;hb=7a38cdf76678a64f6bfc9178e623f9f9cecfcd4b;hp=93887dcc804b1b6863d5eadfef14c3fdf9d1468c;hpb=b02bb45f4cf6378520e5a5b82ff39013cfa270b6;p=libsigrok.git diff --git a/src/dmm/m2110.c b/src/dmm/m2110.c index 93887dcc..4f3af694 100644 --- a/src/dmm/m2110.c +++ b/src/dmm/m2110.c @@ -44,7 +44,7 @@ SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf) if (!strncmp((const char *)buf, "OVERRNG", 7)) return TRUE; - if (sscanf((const char *)buf, "%f", &val) == 1) + if (sr_atof_ascii((const char *)buf, &val) == SR_OK) return TRUE; else return FALSE; @@ -53,6 +53,7 @@ SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf) SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval, struct sr_datafeed_analog *analog, void *info) { + int dot_pos, digits = 0; float val; (void)info; @@ -64,8 +65,15 @@ SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval, if (!strncmp((const char *)buf, "OVERRNG", 7)) *floatval = INFINITY; - else if (sscanf((const char *)buf, "%f", &val) == 1) + else if (sr_atof_ascii((const char *)buf, &val) == SR_OK) { *floatval = val; + dot_pos = strcspn((const char *)buf, "."); + if (dot_pos < 7) + digits = 6 - dot_pos; + } + + analog->encoding->digits = digits; + analog->spec->spec_digits = digits; return SR_OK; }