]> sigrok.org Git - libsigrok.git/blob - hardware/common/dmm/es519xx.c
es519xx: correctly handle the voltage factor in diode mode
[libsigrok.git] / hardware / common / dmm / es519xx.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
5  * Copyright (C) 2013 Aurelien Jacobs <aurel@gnuage.org>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 /*
23  * Cyrustek ES519XX protocol parser.
24  *
25  * Communication parameters: Unidirectional, 2400/7o1 or 19230/7o1
26  */
27
28 #include <string.h>
29 #include <ctype.h>
30 #include <math.h>
31 #include <glib.h>
32 #include "libsigrok.h"
33 #include "libsigrok-internal.h"
34
35 #define LOG_PREFIX "es519xx"
36
37 /* Factors for the respective measurement mode (0 means "invalid"). */
38 static const float factors_2400_11b[9][8] = {
39         {1e-4,  1e-3,  1e-2,  1e-1, 1,    0,    0,    0   }, /* V */
40         {1e-7,  1e-6,  0,     0,    0,    0,    0,    0   }, /* uA */
41         {1e-5,  1e-4,  0,     0,    0,    0,    0,    0   }, /* mA */
42         {1e-2,  0,     0,     0,    0,    0,    0,    0   }, /* A */
43         {1e1,   1e2,   1e3,   1e4,  1e5,  1e6,  0,    0   }, /* RPM */
44         {1e-1,  1,     1e1,   1e2,  1e3,  1e4,  0,    0   }, /* Resistance */
45         {1,     1e1,   1e2,   1e3,  1e4,  1e5,  0,    0   }, /* Frequency */
46         {1e-12, 1e-11, 1e-10, 1e-9, 1e-8, 1e-7, 1e-6, 1e-5}, /* Capacitance */
47         {1e-3,  0,     0,     0,    0,    0,    0,    0   }, /* Diode */
48 };
49 static const float factors_19200_11b_5digits[9][8] = {
50         {1e-4,  1e-3,  1e-2,  1e-1, 1e-5, 0,    0,    0},    /* V */
51         {1e-8,  1e-7,  0,     0,    0,    0,    0,    0},    /* uA */
52         {1e-6,  1e-5,  0,     0,    0,    0,    0,    0},    /* mA */
53         {0,     1e-3,  0,     0,    0,    0,    0,    0},    /* A */
54         {1e-4,  1e-3,  1e-2,  1e-1, 1,    0,    0,    0},    /* Manual A */
55         {1e-2,  1e-1,  1,     1e1,  1e2,  1e3,  1e4,  0},    /* Resistance */
56         {1e-1,  0,     1,     1e1,  1e2,  1e3,  1e4,  0},    /* Frequency */
57         {1e-12, 1e-11, 1e-10, 1e-9, 1e-8, 1e-7, 1e-6, 1e-5}, /* Capacitance */
58         {1e-4,  0,     0,     0,    0,    0,    0,    0   }, /* Diode */
59 };
60 static const float factors_19200_11b_clampmeter[9][8] = {
61         {1e-3,  1e-2,  1e-1,  1,    1e-4, 0,    0,    0},    /* V */
62         {1e-7,  1e-6,  0,     0,    0,    0,    0,    0},    /* uA */
63         {1e-5,  1e-4,  0,     0,    0,    0,    0,    0},    /* mA */
64         {1e-2,  0,     0,     0,    0,    0,    0,    0},    /* A */
65         {1e-3,  1e-2,  1e-1,  1,    0,    0,    0,    0},    /* Manual A */
66         {1e-1,  1,     1e1,   1e2,  1e3,  1e4,  0,    0},    /* Resistance */
67         {1e-1,  0,     1,     1e1,  1e2,  1e3,  1e4,  0},    /* Frequency */
68         {1e-12, 1e-11, 1e-10, 1e-9, 1e-8, 1e-7, 1e-6, 1e-5}, /* Capacitance */
69         {1e-3,  0,     0,     0,    0,    0,    0,    0   }, /* Diode */
70 };
71 static const float factors_19200_11b[9][8] = {
72         {1e-3,  1e-2,  1e-1,  1,    1e-4, 0,    0,    0},    /* V */
73         {1e-7,  1e-6,  0,     0,    0,    0,    0,    0},    /* uA */
74         {1e-5,  1e-4,  0,     0,    0,    0,    0,    0},    /* mA */
75         {1e-3,  1e-2,  0,     0,    0,    0,    0,    0},    /* A */
76         {0,     0,     0,     0,    0,    0,    0,    0},    /* Manual A */
77         {1e-1,  1,     1e1,   1e2,  1e3,  1e4,  0,    0},    /* Resistance */
78         {1,     1e1,   1e2,   1e3,  1e4,  0,    0,    0},    /* Frequency */
79         {1e-12, 1e-11, 1e-10, 1e-9, 1e-8, 1e-7, 1e-6, 0},    /* Capacitance */
80         {1e-3,  0,     0,     0,    0,    0,    0,    0},    /* Diode */
81 };
82 static const float factors_19200_14b[9][8] = {
83         {1e-4,  1e-3,  1e-2,  1e-1, 1e-5, 0,    0,    0},    /* V */
84         {1e-8,  1e-7,  0,     0,    0,    0,    0,    0},    /* uA */
85         {1e-6,  1e-5,  0,     0,    0,    0,    0,    0},    /* mA */
86         {1e-3,  0,     0,     0,    0,    0,    0,    0},    /* A */
87         {1e-4,  1e-3,  1e-2,  1e-1, 1,    0,    0,    0},    /* Manual A */
88         {1e-2,  1e-1,  1,     1e1,  1e2,  1e3,  1e4,  0},    /* Resistance */
89         {1e-2,  1e-1,  0,     1,    1e1,  1e2,  1e3,  1e4},  /* Frequency */
90         {1e-12, 1e-11, 1e-10, 1e-9, 1e-8, 1e-7, 1e-6, 1e-5}, /* Capacitance */
91         {1e-4,  0,     0,     0,    0,    0,    0,    0   }, /* Diode */
92 };
93
94 static int parse_value(const uint8_t *buf, struct es519xx_info *info,
95                        float *result)
96 {
97         int i, intval, num_digits;
98         float floatval;
99
100         num_digits = 4 + ((info->packet_size == 14) ? 1 : 0);
101
102         /* Bytes 1-4 (or 5): Value (4 or 5 decimal digits) */
103         if (info->is_ol) {
104                 sr_spew("Over limit.");
105                 *result = INFINITY;
106                 return SR_OK;
107         } else if (info->is_ul) {
108                 sr_spew("Under limit.");
109                 *result = INFINITY;
110                 return SR_OK;
111         } else if (!isdigit(buf[1]) || !isdigit(buf[2]) ||
112                    !isdigit(buf[3]) || !isdigit(buf[4]) ||
113                    (num_digits == 5 && !isdigit(buf[5]))) {
114                 sr_err("Value contained invalid digits: %02x %02x %02x %02x "
115                        "(%c %c %c %c).", buf[1], buf[2], buf[3], buf[4],
116                        buf[1], buf[2], buf[3], buf[4]);
117                 return SR_ERR;
118         }
119         intval = (info->is_digit4) ? 1 : 0;
120         for (i = 0; i < num_digits; i++)
121                 intval = 10 * intval + (buf[i + 1] - '0');
122
123         /* Apply sign. */
124         intval *= info->is_sign ? -1 : 1;
125
126         floatval = (float)intval;
127
128         /* Note: The decimal point position will be parsed later. */
129
130         sr_spew("The display value is %f.", floatval);
131
132         *result = floatval;
133
134         return SR_OK;
135 }
136
137 static int parse_range(uint8_t b, float *floatval,
138                        const struct es519xx_info *info)
139 {
140         int idx, mode;
141         float factor = 0;
142
143         idx = b - '0';
144
145         if (idx < 0 || idx > 7) {
146                 sr_dbg("Invalid range byte / index: 0x%02x / 0x%02x.", b, idx);
147                 return SR_ERR;
148         }
149
150         /* Parse range byte (depends on the measurement mode). */
151         if (info->is_voltage)
152                 mode = 0; /* V */
153         else if (info->is_current && info->is_micro)
154                 mode = 1; /* uA */
155         else if (info->is_current && info->is_milli)
156                 mode = 2; /* mA */
157         else if (info->is_current && info->is_auto)
158                 mode = 3; /* A */
159         else if (info->is_current && !info->is_auto)
160                 mode = 4; /* Manual A */
161         else if (info->is_rpm)
162                 /* Not a typo, it's really index 4 in factors_2400_11b[][]. */
163                 mode = 4; /* RPM */
164         else if (info->is_resistance || info->is_continuity)
165                 mode = 5; /* Resistance */
166         else if (info->is_frequency)
167                 mode = 6; /* Frequency */
168         else if (info->is_capacitance)
169                 mode = 7; /* Capacitance */
170         else if (info->is_diode)
171                 mode = 8; /* Diode */
172         else {
173                 sr_dbg("Invalid mode, range byte was: 0x%02x.", b);
174                 return SR_ERR;
175         }
176
177         if (info->is_vbar) {
178                 if (info->is_micro)
179                         factor = (const float[]){1e-1, 1}[idx];
180                 else if (info->is_milli)
181                         factor = (const float[]){1e-2, 1e-1}[idx];
182         }
183         else if (info->baudrate == 2400)
184                 factor = factors_2400_11b[mode][idx];
185         else if (info->fivedigits)
186                 factor = factors_19200_11b_5digits[mode][idx];
187         else if (info->clampmeter)
188                 factor = factors_19200_11b_clampmeter[mode][idx];
189         else if (info->packet_size == 11)
190                 factor = factors_19200_11b[mode][idx];
191         else if (info->packet_size == 14)
192                 factor = factors_19200_14b[mode][idx];
193
194         if (factor == 0) {
195                 sr_dbg("Invalid factor for range byte: 0x%02x.", b);
196                 return SR_ERR;
197         }
198
199         /* Apply respective factor (mode-dependent) on the value. */
200         *floatval *= factor;
201         sr_dbg("Applying factor %f, new value is %f.", factor, *floatval);
202
203         return SR_OK;
204 }
205
206 static void parse_flags(const uint8_t *buf, struct es519xx_info *info)
207 {
208         int function, status;
209
210         function = 5 + ((info->packet_size == 14) ? 1 : 0);
211         status = function + 1;
212
213         /* Status byte */
214         if (info->alt_functions) {
215                 info->is_sign  = (buf[status] & (1 << 3)) != 0;
216                 info->is_batt  = (buf[status] & (1 << 2)) != 0; /* Bat. low */
217                 info->is_ol    = (buf[status] & (1 << 1)) != 0; /* Overflow */
218                 info->is_ol   |= (buf[status] & (1 << 0)) != 0; /* Overflow */
219         } else {
220                 info->is_judge = (buf[status] & (1 << 3)) != 0;
221                 info->is_sign  = (buf[status] & (1 << 2)) != 0;
222                 info->is_batt  = (buf[status] & (1 << 1)) != 0; /* Bat. low */
223                 info->is_ol    = (buf[status] & (1 << 0)) != 0; /* Overflow */
224         }
225
226         if (info->packet_size == 14) {
227                 /* Option 1 byte */
228                 info->is_max  = (buf[8] & (1 << 3)) != 0;
229                 info->is_min  = (buf[8] & (1 << 2)) != 0;
230                 info->is_rel  = (buf[8] & (1 << 1)) != 0;
231                 info->is_rmr  = (buf[8] & (1 << 0)) != 0;
232
233                 /* Option 2 byte */
234                 info->is_ul   = (buf[9] & (1 << 3)) != 0; /* Underflow */
235                 info->is_pmax = (buf[9] & (1 << 2)) != 0; /* Max. peak value */
236                 info->is_pmin = (buf[9] & (1 << 1)) != 0; /* Min. peak value */
237
238                 /* Option 3 byte */
239                 info->is_dc   = (buf[10] & (1 << 3)) != 0;
240                 info->is_ac   = (buf[10] & (1 << 2)) != 0;
241                 info->is_auto = (buf[10] & (1 << 1)) != 0;
242                 info->is_vahz = (buf[10] & (1 << 0)) != 0;
243
244                 /* LPF: Low-pass filter(s) */
245                 if (info->selectable_lpf) {
246                         /* Option 4 byte */
247                         info->is_hold = (buf[11] & (1 << 3)) != 0;
248                         info->is_vbar = (buf[11] & (1 << 2)) != 0;
249                         info->is_lpf1 = (buf[11] & (1 << 1)) != 0;
250                         info->is_lpf0 = (buf[11] & (1 << 0)) != 0;
251                 } else {
252                         /* Option 4 byte */
253                         info->is_vbar = (buf[11] & (1 << 2)) != 0;
254                         info->is_hold = (buf[11] & (1 << 1)) != 0;
255                         info->is_lpf1 = (buf[11] & (1 << 0)) != 0;
256                 }
257         } else if (info->alt_functions) {
258                 /* Option 2 byte */
259                 info->is_dc   = (buf[8] & (1 << 3)) != 0;
260                 info->is_auto = (buf[8] & (1 << 2)) != 0;
261                 info->is_apo  = (buf[8] & (1 << 0)) != 0;
262                 info->is_ac   = !info->is_dc;
263         } else {
264                 /* Option 1 byte */
265                 if (info->baudrate == 2400) {
266                         info->is_pmax   = (buf[7] & (1 << 3)) != 0;
267                         info->is_pmin   = (buf[7] & (1 << 2)) != 0;
268                         info->is_vahz   = (buf[7] & (1 << 0)) != 0;
269                 } else if (info->fivedigits) {
270                         info->is_ul     = (buf[7] & (1 << 3)) != 0;
271                         info->is_pmax   = (buf[7] & (1 << 2)) != 0;
272                         info->is_pmin   = (buf[7] & (1 << 1)) != 0;
273                         info->is_digit4 = (buf[7] & (1 << 0)) != 0;
274                 } else if (info->clampmeter) {
275                         info->is_ul     = (buf[7] & (1 << 3)) != 0;
276                         info->is_vasel  = (buf[7] & (1 << 2)) != 0;
277                         info->is_vbar   = (buf[7] & (1 << 1)) != 0;
278                 } else {
279                         info->is_hold   = (buf[7] & (1 << 3)) != 0;
280                         info->is_max    = (buf[7] & (1 << 2)) != 0;
281                         info->is_min    = (buf[7] & (1 << 1)) != 0;
282                 }
283
284                 /* Option 2 byte */
285                 info->is_dc   = (buf[8] & (1 << 3)) != 0;
286                 info->is_ac   = (buf[8] & (1 << 2)) != 0;
287                 info->is_auto = (buf[8] & (1 << 1)) != 0;
288                 if (info->baudrate == 2400)
289                         info->is_apo  = (buf[8] & (1 << 0)) != 0;
290                 else
291                         info->is_vahz = (buf[8] & (1 << 0)) != 0;
292         }
293
294         /* Function byte */
295         if (info->alt_functions) {
296                 switch (buf[function]) {
297                 case 0x3f: /* A */
298                         info->is_current = info->is_auto = TRUE;
299                         break;
300                 case 0x3e: /* uA */
301                         info->is_current = info->is_micro = info->is_auto = TRUE;
302                         break;
303                 case 0x3d: /* mA */
304                         info->is_current = info->is_milli = info->is_auto = TRUE;
305                         break;
306                 case 0x3c: /* V */
307                         info->is_voltage = TRUE;
308                         break;
309                 case 0x37: /* Resistance */
310                         info->is_resistance = TRUE;
311                         break;
312                 case 0x36: /* Continuity */
313                         info->is_continuity = TRUE;
314                         break;
315                 case 0x3b: /* Diode */
316                         info->is_diode = TRUE;
317                         break;
318                 case 0x3a: /* Frequency */
319                         info->is_frequency = TRUE;
320                         break;
321                 case 0x34: /* ADP0 */
322                 case 0x35: /* ADP0 */
323                         info->is_adp0 = TRUE;
324                         break;
325                 case 0x38: /* ADP1 */
326                 case 0x39: /* ADP1 */
327                         info->is_adp1 = TRUE;
328                         break;
329                 case 0x32: /* ADP2 */
330                 case 0x33: /* ADP2 */
331                         info->is_adp2 = TRUE;
332                         break;
333                 case 0x30: /* ADP3 */
334                 case 0x31: /* ADP3 */
335                         info->is_adp3 = TRUE;
336                         break;
337                 default:
338                         sr_err("Invalid function byte: 0x%02x.", buf[function]);
339                         break;
340                 }
341         } else {
342                 /* Note: Some of these mappings are fixed up later. */
343                 switch (buf[function]) {
344                 case 0x3b: /* V */
345                         info->is_voltage = TRUE;
346                         break;
347                 case 0x3d: /* uA */
348                         info->is_current = info->is_micro = info->is_auto = TRUE;
349                         break;
350                 case 0x3f: /* mA */
351                         info->is_current = info->is_milli = info->is_auto = TRUE;
352                         break;
353                 case 0x30: /* A */
354                         info->is_current = info->is_auto = TRUE;
355                         break;
356                 case 0x39: /* Manual A */
357                         info->is_current = TRUE;
358                         info->is_auto = FALSE; /* Manual mode */
359                         break;
360                 case 0x33: /* Resistance */
361                         info->is_resistance = TRUE;
362                         break;
363                 case 0x35: /* Continuity */
364                         info->is_continuity = TRUE;
365                         break;
366                 case 0x31: /* Diode */
367                         info->is_diode = TRUE;
368                         break;
369                 case 0x32: /* Frequency / RPM / duty cycle */
370                         if (info->packet_size == 14) {
371                                 if (info->is_judge)
372                                         info->is_frequency = TRUE;
373                                 else
374                                         info->is_duty_cycle = TRUE;
375                         } else {
376                                 if (info->is_judge)
377                                         info->is_rpm = TRUE;
378                                 else
379                                         info->is_frequency = TRUE;
380                         }
381                         break;
382                 case 0x36: /* Capacitance */
383                         info->is_capacitance = TRUE;
384                         break;
385                 case 0x34: /* Temperature */
386                         info->is_temperature = TRUE;
387                         if (info->is_judge)
388                                 info->is_celsius = TRUE;
389                         else
390                                 info->is_fahrenheit = TRUE;
391                         /* IMPORTANT: The digits always represent Celsius! */
392                         break;
393                 case 0x3e: /* ADP0 */
394                         info->is_adp0 = TRUE;
395                         break;
396                 case 0x3c: /* ADP1 */
397                         info->is_adp1 = TRUE;
398                         break;
399                 case 0x38: /* ADP2 */
400                         info->is_adp2 = TRUE;
401                         break;
402                 case 0x3a: /* ADP3 */
403                         info->is_adp3 = TRUE;
404                         break;
405                 default:
406                         sr_err("Invalid function byte: 0x%02x.", buf[function]);
407                         break;
408                 }
409         }
410
411         if (info->is_current && (info->is_micro || info->is_milli) && info->is_vasel) {
412                 info->is_current = info->is_auto = FALSE;
413                 info->is_voltage = TRUE;
414         }
415
416         if (info->baudrate == 2400) {
417                 /* Inverted mapping between mA and A, and no manual A. */
418                 if (info->is_current && (info->is_milli || !info->is_auto)) {
419                         info->is_milli = !info->is_milli;
420                         info->is_auto = TRUE;
421                 }
422         }
423 }
424
425 static void handle_flags(struct sr_datafeed_analog *analog,
426                          float *floatval, const struct es519xx_info *info)
427 {
428         /*
429          * Note: is_micro etc. are not used directly to multiply/divide
430          * floatval, this is handled via parse_range() and factors[][].
431          */
432
433         /* Measurement modes */
434         if (info->is_voltage) {
435                 analog->mq = SR_MQ_VOLTAGE;
436                 analog->unit = SR_UNIT_VOLT;
437         }
438         if (info->is_current) {
439                 analog->mq = SR_MQ_CURRENT;
440                 analog->unit = SR_UNIT_AMPERE;
441         }
442         if (info->is_resistance) {
443                 analog->mq = SR_MQ_RESISTANCE;
444                 analog->unit = SR_UNIT_OHM;
445         }
446         if (info->is_frequency) {
447                 analog->mq = SR_MQ_FREQUENCY;
448                 analog->unit = SR_UNIT_HERTZ;
449         }
450         if (info->is_capacitance) {
451                 analog->mq = SR_MQ_CAPACITANCE;
452                 analog->unit = SR_UNIT_FARAD;
453         }
454         if (info->is_temperature && info->is_celsius) {
455                 analog->mq = SR_MQ_TEMPERATURE;
456                 analog->unit = SR_UNIT_CELSIUS;
457         }
458         if (info->is_temperature && info->is_fahrenheit) {
459                 analog->mq = SR_MQ_TEMPERATURE;
460                 analog->unit = SR_UNIT_FAHRENHEIT;
461         }
462         if (info->is_continuity) {
463                 analog->mq = SR_MQ_CONTINUITY;
464                 analog->unit = SR_UNIT_BOOLEAN;
465                 *floatval = (*floatval < 0.0 || *floatval > 25.0) ? 0.0 : 1.0;
466         }
467         if (info->is_diode) {
468                 analog->mq = SR_MQ_VOLTAGE;
469                 analog->unit = SR_UNIT_VOLT;
470         }
471         if (info->is_rpm) {
472                 analog->mq = SR_MQ_FREQUENCY;
473                 analog->unit = SR_UNIT_REVOLUTIONS_PER_MINUTE;
474         }
475         if (info->is_duty_cycle) {
476                 analog->mq = SR_MQ_DUTY_CYCLE;
477                 analog->unit = SR_UNIT_PERCENTAGE;
478         }
479
480         /* Measurement related flags */
481         if (info->is_ac)
482                 analog->mqflags |= SR_MQFLAG_AC;
483         if (info->is_dc)
484                 analog->mqflags |= SR_MQFLAG_DC;
485         if (info->is_auto)
486                 analog->mqflags |= SR_MQFLAG_AUTORANGE;
487         if (info->is_diode)
488                 analog->mqflags |= SR_MQFLAG_DIODE;
489         if (info->is_hold)
490                 /*
491                 * Note: HOLD only affects the number displayed on the LCD,
492                 * but not the value sent via the protocol! It also does not
493                 * affect the bargraph on the LCD.
494                 */
495                 analog->mqflags |= SR_MQFLAG_HOLD;
496         if (info->is_max)
497                 analog->mqflags |= SR_MQFLAG_MAX;
498         if (info->is_min)
499                 analog->mqflags |= SR_MQFLAG_MIN;
500         if (info->is_rel)
501                 analog->mqflags |= SR_MQFLAG_RELATIVE;
502
503         /* Other flags */
504         if (info->is_judge)
505                 sr_spew("Judge bit is set.");
506         if (info->is_batt)
507                 sr_spew("Battery is low.");
508         if (info->is_ol)
509                 sr_spew("Input overflow.");
510         if (info->is_ul)
511                 sr_spew("Input underflow.");
512         if (info->is_pmax)
513                 sr_spew("pMAX active, LCD shows max. peak value.");
514         if (info->is_pmin)
515                 sr_spew("pMIN active, LCD shows min. peak value.");
516         if (info->is_vahz)
517                 sr_spew("VAHZ active.");
518         if (info->is_apo)
519                 sr_spew("Auto-Power-Off enabled.");
520         if (info->is_vbar)
521                 sr_spew("VBAR active.");
522         if ((!info->selectable_lpf && info->is_lpf1) ||
523             (info->selectable_lpf && (!info->is_lpf0 || !info->is_lpf1)))
524                 sr_spew("Low-pass filter feature is active.");
525 }
526
527 static gboolean flags_valid(const struct es519xx_info *info)
528 {
529         int count;
530
531         /* Does the packet have more than one multiplier? */
532         count  = (info->is_micro) ? 1 : 0;
533         count += (info->is_milli) ? 1 : 0;
534         if (count > 1) {
535                 sr_err("More than one multiplier detected in packet.");
536                 return FALSE;
537         }
538
539         /* Does the packet "measure" more than one type of value? */
540         count  = (info->is_voltage) ? 1 : 0;
541         count += (info->is_current) ? 1 : 0;
542         count += (info->is_resistance) ? 1 : 0;
543         count += (info->is_frequency) ? 1 : 0;
544         count += (info->is_capacitance) ? 1 : 0;
545         count += (info->is_temperature) ? 1 : 0;
546         count += (info->is_continuity) ? 1 : 0;
547         count += (info->is_diode) ? 1 : 0;
548         count += (info->is_rpm) ? 1 : 0;
549         if (count > 1) {
550                 sr_err("More than one measurement type detected in packet.");
551                 return FALSE;
552         }
553
554         /* Both AC and DC set? */
555         if (info->is_ac && info->is_dc) {
556                 sr_err("Both AC and DC flags detected in packet.");
557                 return FALSE;
558         }
559
560         return TRUE;
561 }
562
563 static gboolean sr_es519xx_packet_valid(const uint8_t *buf,
564                                         struct es519xx_info *info)
565 {
566         int s;
567
568         s = info->packet_size;
569
570         if (s == 11 && memcmp(buf, buf + s, s))
571                 return FALSE;
572
573         if (buf[s - 2] != '\r' || buf[s - 1] != '\n')
574                 return FALSE;
575
576         parse_flags(buf, info);
577
578         if (!flags_valid(info))
579                 return FALSE;
580
581         return TRUE;
582 }
583
584 static int sr_es519xx_parse(const uint8_t *buf, float *floatval,
585                             struct sr_datafeed_analog *analog,
586                             struct es519xx_info *info)
587 {
588         int ret;
589
590         if (!sr_es519xx_packet_valid(buf, info))
591                 return SR_ERR;
592
593         if ((ret = parse_value(buf, info, floatval)) != SR_OK) {
594                 sr_err("Error parsing value: %d.", ret);
595                 return ret;
596         }
597
598         if ((ret = parse_range(buf[0], floatval, info)) != SR_OK)
599                 return ret;
600
601         handle_flags(analog, floatval, info);
602         return SR_OK;
603 }
604
605 /*
606  * Functions for 2400 baud / 11 bytes protocols.
607  * This includes ES51962, ES51971, ES51972, ES51978 and ES51989.
608  */
609 SR_PRIV gboolean sr_es519xx_2400_11b_packet_valid(const uint8_t *buf)
610 {
611         struct es519xx_info info = { 0 };
612
613         info.baudrate = 2400;
614         info.packet_size = 11;
615
616         return sr_es519xx_packet_valid(buf, &info);
617 }
618
619 SR_PRIV int sr_es519xx_2400_11b_parse(const uint8_t *buf, float *floatval,
620                                 struct sr_datafeed_analog *analog, void *info)
621 {
622         struct es519xx_info *info_local;
623
624         info_local = info;
625         memset(info_local, 0, sizeof(struct es519xx_info));
626         info_local->baudrate = 2400;
627         info_local->packet_size = 11;
628
629         return sr_es519xx_parse(buf, floatval, analog, info);
630 }
631
632 /*
633  * Functions for 2400 baud / 11 byte protocols.
634  * This includes ES51960, ES51977 and ES51988.
635  */
636 SR_PRIV gboolean sr_es519xx_2400_11b_altfn_packet_valid(const uint8_t *buf)
637 {
638         struct es519xx_info info = { 0 };
639
640         info.baudrate = 2400;
641         info.packet_size = 11;
642         info.alt_functions = TRUE;
643
644         return sr_es519xx_packet_valid(buf, &info);
645 }
646
647 SR_PRIV int sr_es519xx_2400_11b_altfn_parse(const uint8_t *buf,
648                 float *floatval, struct sr_datafeed_analog *analog, void *info)
649 {
650         struct es519xx_info *info_local;
651
652         info_local = info;
653         memset(info_local, 0, sizeof(struct es519xx_info));
654         info_local->baudrate = 2400;
655         info_local->packet_size = 11;
656         info_local->alt_functions = TRUE;
657
658         return sr_es519xx_parse(buf, floatval, analog, info);
659 }
660
661 /*
662  * Functions for 19200 baud / 11 bytes protocols with 5 digits display.
663  * This includes ES51911, ES51916 and ES51918.
664  */
665 SR_PRIV gboolean sr_es519xx_19200_11b_5digits_packet_valid(const uint8_t *buf)
666 {
667         struct es519xx_info info = { 0 };
668
669         info.baudrate = 19200;
670         info.packet_size = 11;
671         info.fivedigits = TRUE;
672
673         return sr_es519xx_packet_valid(buf, &info);
674 }
675
676 SR_PRIV int sr_es519xx_19200_11b_5digits_parse(const uint8_t *buf,
677                 float *floatval, struct sr_datafeed_analog *analog, void *info)
678 {
679         struct es519xx_info *info_local;
680
681         info_local = info;
682         memset(info_local, 0, sizeof(struct es519xx_info));
683         info_local->baudrate = 19200;
684         info_local->packet_size = 11;
685         info_local->fivedigits = TRUE;
686
687         return sr_es519xx_parse(buf, floatval, analog, info);
688 }
689
690 /*
691  * Functions for 19200 baud / 11 bytes protocols with clamp meter support.
692  * This includes ES51967 and ES51969.
693  */
694 SR_PRIV gboolean sr_es519xx_19200_11b_clamp_packet_valid(const uint8_t *buf)
695 {
696         struct es519xx_info info = { 0 };
697
698         info.baudrate = 19200;
699         info.packet_size = 11;
700         info.clampmeter = TRUE;
701
702         return sr_es519xx_packet_valid(buf, &info);
703 }
704
705 SR_PRIV int sr_es519xx_19200_11b_clamp_parse(const uint8_t *buf,
706                 float *floatval, struct sr_datafeed_analog *analog, void *info)
707 {
708         struct es519xx_info *info_local;
709
710         info_local = info;
711         memset(info_local, 0, sizeof(struct es519xx_info));
712         info_local->baudrate = 19200;
713         info_local->packet_size = 11;
714         info_local->clampmeter = TRUE;
715
716         return sr_es519xx_parse(buf, floatval, analog, info);
717 }
718
719 /*
720  * Functions for 19200 baud / 11 bytes protocols.
721  * This includes ES51981, ES51982, ES51983, ES51984 and ES51986.
722  */
723 SR_PRIV gboolean sr_es519xx_19200_11b_packet_valid(const uint8_t *buf)
724 {
725         struct es519xx_info info = { 0 };
726
727         info.baudrate = 19200;
728         info.packet_size = 11;
729
730         return sr_es519xx_packet_valid(buf, &info);
731 }
732
733 SR_PRIV int sr_es519xx_19200_11b_parse(const uint8_t *buf, float *floatval,
734                         struct sr_datafeed_analog *analog, void *info)
735 {
736         struct es519xx_info *info_local;
737
738         info_local = info;
739         memset(info_local, 0, sizeof(struct es519xx_info));
740         info_local->baudrate = 19200;
741         info_local->packet_size = 11;
742
743         return sr_es519xx_parse(buf, floatval, analog, info);
744 }
745
746 /*
747  * Functions for 19200 baud / 14 bytes protocols.
748  * This includes ES51921 and ES51922.
749  */
750 SR_PRIV gboolean sr_es519xx_19200_14b_packet_valid(const uint8_t *buf)
751 {
752         struct es519xx_info info = { 0 };
753
754         info.baudrate = 19200;
755         info.packet_size = 14;
756
757         return sr_es519xx_packet_valid(buf, &info);
758 }
759
760 SR_PRIV int sr_es519xx_19200_14b_parse(const uint8_t *buf, float *floatval,
761                         struct sr_datafeed_analog *analog, void *info)
762 {
763         struct es519xx_info *info_local;
764
765         info_local = info;
766         memset(info_local, 0, sizeof(struct es519xx_info));
767         info_local->baudrate = 19200;
768         info_local->packet_size = 14;
769
770         return sr_es519xx_parse(buf, floatval, analog, info);
771 }
772
773 /*
774  * Functions for 19200 baud / 14 bytes protocols with selectable LPF.
775  * This includes ES51931 and ES51932.
776  */
777 SR_PRIV gboolean sr_es519xx_19200_14b_sel_lpf_packet_valid(const uint8_t *buf)
778 {
779         struct es519xx_info info = { 0 };
780
781         info.baudrate = 19200;
782         info.packet_size = 14;
783         info.selectable_lpf = TRUE;
784
785         return sr_es519xx_packet_valid(buf, &info);
786 }
787
788 SR_PRIV int sr_es519xx_19200_14b_sel_lpf_parse(const uint8_t *buf,
789                 float *floatval, struct sr_datafeed_analog *analog, void *info)
790 {
791         struct es519xx_info *info_local;
792
793         info_local = info;
794         memset(info_local, 0, sizeof(struct es519xx_info));
795         info_local->baudrate = 19200;
796         info_local->packet_size = 14;
797         info_local->selectable_lpf = TRUE;
798
799         return sr_es519xx_parse(buf, floatval, analog, info);
800 }