]> sigrok.org Git - libsigrok.git/blob - src/dmm/m2110.c
Build: Include <config.h> first in all source files
[libsigrok.git] / src / dmm / m2110.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 Matthias Heidbrink <m-sigrok@heidbrink.biz>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * @file
22  *
23  * BBC Goerz Metrawatt M2110 ASCII protocol parser.
24  *
25  * Most probably the simplest multimeter protocol ever ;-) .
26  */
27
28 #include <config.h>
29 #include <string.h>
30 #include <math.h>
31 #include <glib.h>
32 #include <libsigrok/libsigrok.h>
33 #include "libsigrok-internal.h"
34
35 #define LOG_PREFIX "m2110"
36
37 SR_PRIV gboolean sr_m2110_packet_valid(const uint8_t *buf)
38 {
39         float val;
40
41         if ((buf[7] != '\r') || (buf[8] != '\n'))
42                 return FALSE;
43
44         if (!strncmp((const char *)buf, "OVERRNG", 7))
45                 return TRUE;
46
47         if (sscanf((const char *)buf, "%f", &val) == 1)
48                 return TRUE;
49         else
50                 return FALSE;
51 }
52
53 SR_PRIV int sr_m2110_parse(const uint8_t *buf, float *floatval,
54                                 struct sr_datafeed_analog *analog, void *info)
55 {
56         float val;
57
58         (void)info;
59
60         /* We don't know the unit, so that's the best we can do. */
61         analog->mq = SR_MQ_GAIN;
62         analog->unit = SR_UNIT_UNITLESS;
63         analog->mqflags = 0;
64
65         if (!strncmp((const char *)buf, "OVERRNG", 7))
66                 *floatval = INFINITY;
67         else if (sscanf((const char *)buf, "%f", &val) == 1)
68                 *floatval = val;
69
70         return SR_OK;
71 }