]> sigrok.org Git - libsigrok.git/blob - hardware/fluke-dmm/fluke.c
Always interleave analog data with all enabled probes.
[libsigrok.git] / hardware / fluke-dmm / fluke.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
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 #include <stdlib.h>
21 #include <math.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <glib.h>
25 #include "libsigrok.h"
26 #include "libsigrok-internal.h"
27 #include "fluke-dmm.h"
28
29
30 static struct sr_datafeed_analog *handle_qm_18x(const struct sr_dev_inst *sdi,
31                 char **tokens)
32 {
33         struct sr_datafeed_analog *analog;
34         float fvalue;
35         char *e, *u;
36         gboolean is_oor;
37
38         (void)sdi;
39
40         if (strcmp(tokens[0], "QM") || !tokens[1])
41                 return NULL;
42
43         if ((e = strstr(tokens[1], "Out of range"))) {
44                 is_oor = TRUE;
45                 fvalue = -1;
46         } else {
47                 is_oor = FALSE;
48                 fvalue = strtof(tokens[1], &e);
49                 if (fvalue == 0.0 && e == tokens[1]) {
50                         /* Happens all the time, when switching modes. */
51                         sr_dbg("Invalid float.");
52                         return NULL;
53                 }
54         }
55         while(*e && *e == ' ')
56                 e++;
57
58         if (!(analog = g_try_malloc0(sizeof(struct sr_datafeed_analog))))
59                 return NULL;
60         if (!(analog->data = g_try_malloc(sizeof(float))))
61                 return NULL;
62         analog->probes = sdi->probes;
63         analog->num_samples = 1;
64         if (is_oor)
65                 *analog->data = NAN;
66         else
67                 *analog->data = fvalue;
68         analog->mq = -1;
69
70         if ((u = strstr(e, "V DC")) || (u = strstr(e, "V AC"))) {
71                 analog->mq = SR_MQ_VOLTAGE;
72                 analog->unit = SR_UNIT_VOLT;
73                 if (!is_oor && e[0] == 'm')
74                         *analog->data /= 1000;
75                 /* This catches "V AC", "V DC" and "V AC+DC". */
76                 if (strstr(u, "AC"))
77                         analog->mqflags |= SR_MQFLAG_AC | SR_MQFLAG_RMS;
78                 if (strstr(u, "DC"))
79                         analog->mqflags |= SR_MQFLAG_DC;
80         } else if ((u = strstr(e, "dBV")) || (u = strstr(e, "dBm"))) {
81                 analog->mq = SR_MQ_VOLTAGE;
82                 if (u[2] == 'm')
83                         analog->unit = SR_UNIT_DECIBEL_MW;
84                 else
85                         analog->unit = SR_UNIT_DECIBEL_VOLT;
86                 analog->mqflags |= SR_MQFLAG_AC | SR_MQFLAG_RMS;
87         } else if ((u = strstr(e, "Ohms"))) {
88                 analog->mq = SR_MQ_RESISTANCE;
89                 analog->unit = SR_UNIT_OHM;
90                 if (is_oor)
91                         *analog->data = INFINITY;
92                 else if (e[0] == 'k')
93                         *analog->data *= 1000;
94                 else if (e[0] == 'M')
95                         *analog->data *= 1000000;
96         } else if (!strcmp(e, "nS")) {
97                 analog->mq = SR_MQ_CONDUCTANCE;
98                 analog->unit = SR_UNIT_SIEMENS;
99                 *analog->data /= 1e+9;
100         } else if ((u = strstr(e, "Farads"))) {
101                 analog->mq = SR_MQ_CAPACITANCE;
102                 analog->unit = SR_UNIT_FARAD;
103                 if (!is_oor) {
104                         if (e[0] == 'm')
105                                 *analog->data /= 1e+3;
106                         else if (e[0] == 'u')
107                                 *analog->data /= 1e+6;
108                         else if (e[0] == 'n')
109                                 *analog->data /= 1e+9;
110                 }
111         } else if ((u = strstr(e, "Deg C")) || (u = strstr(e, "Deg F"))) {
112                 analog->mq = SR_MQ_TEMPERATURE;
113                 if (u[4] == 'C')
114                         analog->unit = SR_UNIT_CELSIUS;
115                 else
116                         analog->unit = SR_UNIT_FAHRENHEIT;
117         } else if ((u = strstr(e, "A AC")) || (u = strstr(e, "A DC"))) {
118                 analog->mq = SR_MQ_CURRENT;
119                 analog->unit = SR_UNIT_AMPERE;
120                 /* This catches "A AC", "A DC" and "A AC+DC". */
121                 if (strstr(u, "AC"))
122                         analog->mqflags |= SR_MQFLAG_AC | SR_MQFLAG_RMS;
123                 if (strstr(u, "DC"))
124                         analog->mqflags |= SR_MQFLAG_DC;
125                 if (!is_oor) {
126                         if (e[0] == 'm')
127                                 *analog->data /= 1e+3;
128                         else if (e[0] == 'u')
129                                 *analog->data /= 1e+6;
130                 }
131         } else if ((u = strstr(e, "Hz"))) {
132                 analog->mq = SR_MQ_FREQUENCY;
133                 analog->unit = SR_UNIT_HERTZ;
134                 if (e[0] == 'k')
135                         *analog->data *= 1e+3;
136         } else if (!strcmp(e, "%")) {
137                 analog->mq = SR_MQ_DUTY_CYCLE;
138                 analog->unit = SR_UNIT_PERCENTAGE;
139         } else if ((u = strstr(e, "ms"))) {
140                 analog->mq = SR_MQ_PULSE_WIDTH;
141                 analog->unit = SR_UNIT_SECOND;
142                 *analog->data /= 1e+3;
143         }
144
145         if (analog->mq == -1) {
146                 /* Not a valid measurement. */
147                 g_free(analog->data);
148                 g_free(analog);
149                 analog = NULL;
150         }
151
152         return analog;
153 }
154
155 static struct sr_datafeed_analog *handle_qm_28x(const struct sr_dev_inst *sdi,
156                 char **tokens)
157 {
158         struct sr_datafeed_analog *analog;
159         float fvalue;
160         char *eptr;
161
162         (void)sdi;
163
164         if (!tokens[1])
165                 return NULL;
166
167         fvalue = strtof(tokens[0], &eptr);
168         if (fvalue == 0.0 && eptr == tokens[0]) {
169                 sr_err("Invalid float.");
170                 return NULL;
171         }
172
173         if (!(analog = g_try_malloc0(sizeof(struct sr_datafeed_analog))))
174                 return NULL;
175         if (!(analog->data = g_try_malloc(sizeof(float))))
176                 return NULL;
177         analog->probes = sdi->probes;
178         analog->num_samples = 1;
179         *analog->data = fvalue;
180         analog->mq = -1;
181
182         if (!strcmp(tokens[1], "VAC") || !strcmp(tokens[1], "VDC")) {
183                 analog->mq = SR_MQ_VOLTAGE;
184                 analog->unit = SR_UNIT_VOLT;
185                 if (!strcmp(tokens[2], "NORMAL")) {
186                         if (tokens[1][1] == 'A') {
187                                 analog->mqflags |= SR_MQFLAG_AC;
188                                 analog->mqflags |= SR_MQFLAG_RMS;
189                         } else
190                                 analog->mqflags |= SR_MQFLAG_DC;
191                 } else if (!strcmp(tokens[2], "OL") || !strcmp(tokens[2], "OL_MINUS")) {
192                         *analog->data = NAN;
193                 } else
194                         analog->mq = -1;
195         } else if (!strcmp(tokens[1], "dBV") || !strcmp(tokens[1], "dBm")) {
196                 analog->mq = SR_MQ_VOLTAGE;
197                 if (tokens[1][2] == 'm')
198                         analog->unit = SR_UNIT_DECIBEL_MW;
199                 else
200                         analog->unit = SR_UNIT_DECIBEL_VOLT;
201                 analog->mqflags |= SR_MQFLAG_AC | SR_MQFLAG_RMS;
202         } else if (!strcmp(tokens[1], "CEL") || !strcmp(tokens[1], "FAR")) {
203                 if (!strcmp(tokens[2], "NORMAL")) {
204                         analog->mq = SR_MQ_TEMPERATURE;
205                         if (tokens[1][0] == 'C')
206                                 analog->unit = SR_UNIT_CELSIUS;
207                         else
208                                 analog->unit = SR_UNIT_FAHRENHEIT;
209                 }
210         } else if (!strcmp(tokens[1], "OHM")) {
211                 if (!strcmp(tokens[3], "NONE")) {
212                         analog->mq = SR_MQ_RESISTANCE;
213                         analog->unit = SR_UNIT_OHM;
214                         if (!strcmp(tokens[2], "OL") || !strcmp(tokens[2], "OL_MINUS")) {
215                                 *analog->data = INFINITY;
216                         } else if (strcmp(tokens[2], "NORMAL"))
217                                 analog->mq = -1;
218                 } else if (!strcmp(tokens[3], "OPEN_CIRCUIT")) {
219                         analog->mq = SR_MQ_CONTINUITY;
220                         analog->unit = SR_UNIT_BOOLEAN;
221                         *analog->data = 0.0;
222                 } else if (!strcmp(tokens[3], "SHORT_CIRCUIT")) {
223                         analog->mq = SR_MQ_CONTINUITY;
224                         analog->unit = SR_UNIT_BOOLEAN;
225                         *analog->data = 1.0;
226                 }
227         } else if (!strcmp(tokens[1], "F")
228                         && !strcmp(tokens[2], "NORMAL")
229                         && !strcmp(tokens[3], "NONE")) {
230                 analog->mq = SR_MQ_CAPACITANCE;
231                 analog->unit = SR_UNIT_FARAD;
232         } else if (!strcmp(tokens[1], "AAC") || !strcmp(tokens[1], "ADC")) {
233                 analog->mq = SR_MQ_CURRENT;
234                 analog->unit = SR_UNIT_AMPERE;
235                 if (!strcmp(tokens[2], "NORMAL")) {
236                         if (tokens[1][1] == 'A') {
237                                 analog->mqflags |= SR_MQFLAG_AC;
238                                 analog->mqflags |= SR_MQFLAG_RMS;
239                         } else
240                                 analog->mqflags |= SR_MQFLAG_DC;
241                 } else if (!strcmp(tokens[2], "OL") || !strcmp(tokens[2], "OL_MINUS")) {
242                         *analog->data = NAN;
243                 } else
244                         analog->mq = -1;
245         } if (!strcmp(tokens[1], "Hz") && !strcmp(tokens[2], "NORMAL")) {
246                 analog->mq = SR_MQ_FREQUENCY;
247                 analog->unit = SR_UNIT_HERTZ;
248         } else if (!strcmp(tokens[1], "PCT") && !strcmp(tokens[2], "NORMAL")) {
249                 analog->mq = SR_MQ_DUTY_CYCLE;
250                 analog->unit = SR_UNIT_PERCENTAGE;
251         } else if (!strcmp(tokens[1], "S") && !strcmp(tokens[2], "NORMAL")) {
252                 analog->mq = SR_MQ_PULSE_WIDTH;
253                 analog->unit = SR_UNIT_SECOND;
254         } else if (!strcmp(tokens[1], "SIE") && !strcmp(tokens[2], "NORMAL")) {
255                 analog->mq = SR_MQ_CONDUCTANCE;
256                 analog->unit = SR_UNIT_SIEMENS;
257         }
258
259         if (analog->mq == -1) {
260                 /* Not a valid measurement. */
261                 g_free(analog->data);
262                 g_free(analog);
263                 analog = NULL;
264         }
265
266         return analog;
267 }
268
269 static void handle_qm_19x_meta(const struct sr_dev_inst *sdi, char **tokens)
270 {
271         struct dev_context *devc;
272         int meas_type, meas_unit, meas_char, i;
273
274         /* Make sure we have 7 valid tokens. */
275         for (i = 0; tokens[i] && i < 7; i++);
276         if (i != 7)
277                 return;
278
279         if (strcmp(tokens[1], "1"))
280                 /* Invalid measurement. */
281                 return;
282
283         if (strcmp(tokens[2], "3"))
284                 /* Only interested in input from the meter mode source. */
285                 return;
286
287         devc = sdi->priv;
288
289         /* Measurement type 11 == absolute, 19 = relative */
290         meas_type = strtol(tokens[0], NULL, 10);
291         if (meas_type != 11 && meas_type != 19)
292                 /* Device is in some mode we don't support. */
293                 return;
294
295         /* We might get metadata for absolute and relative mode (if the device
296          * is in relative mode). In that case, relative takes precedence. */
297         if (meas_type == 11 && devc->meas_type == 19)
298                 return;
299
300         meas_unit = strtol(tokens[3], NULL, 10);
301         if (meas_unit == 0)
302                 /* Device is turned off. Really. */
303                 return;
304         meas_char = strtol(tokens[4], NULL, 10);
305
306         devc->mq = devc->unit = -1;
307         devc->mqflags = 0;
308         switch (meas_unit) {
309         case 1:
310                 devc->mq = SR_MQ_VOLTAGE;
311                 devc->unit = SR_UNIT_VOLT;
312                 if (meas_char == 1)
313                         devc->mqflags |= SR_MQFLAG_DC;
314                 else if (meas_char == 2)
315                         devc->mqflags |= SR_MQFLAG_AC;
316                 else if (meas_char == 3)
317                         devc->mqflags |= SR_MQFLAG_DC | SR_MQFLAG_AC;
318                 else if (meas_char == 15)
319                         devc->mqflags |= SR_MQFLAG_DIODE;
320                 break;
321         case 2:
322                 devc->mq = SR_MQ_CURRENT;
323                 devc->unit = SR_UNIT_AMPERE;
324                 if (meas_char == 1)
325                         devc->mqflags |= SR_MQFLAG_DC;
326                 else if (meas_char == 2)
327                         devc->mqflags |= SR_MQFLAG_AC;
328                 else if (meas_char == 3)
329                         devc->mqflags |= SR_MQFLAG_DC | SR_MQFLAG_AC;
330                 break;
331         case 3:
332                 if (meas_char == 1) {
333                         devc->mq = SR_MQ_RESISTANCE;
334                         devc->unit = SR_UNIT_OHM;
335                 } else if (meas_char == 16) {
336                         devc->mq = SR_MQ_CONTINUITY;
337                         devc->unit = SR_UNIT_BOOLEAN;
338                 }
339                 break;
340         case 12:
341                 devc->mq = SR_MQ_TEMPERATURE;
342                 devc->unit = SR_UNIT_CELSIUS;
343                 break;
344         case 13:
345                 devc->mq = SR_MQ_TEMPERATURE;
346                 devc->unit = SR_UNIT_FAHRENHEIT;
347                 break;
348         default:
349                 sr_dbg("unknown unit: %d", meas_unit);
350         }
351         if (devc->mq == -1 && devc->unit == -1)
352                 return;
353
354         /* If we got here, we know how to interpret the measurement. */
355         devc->meas_type = meas_type;
356         if (meas_type == 11)
357                 /* Absolute meter reading. */
358                 devc->is_relative = FALSE;
359         else if (!strcmp(tokens[0], "19"))
360                 /* Relative meter reading. */
361                 devc->is_relative = TRUE;
362
363 }
364
365 static void handle_qm_19x_data(const struct sr_dev_inst *sdi, char **tokens)
366 {
367         struct dev_context *devc;
368         struct sr_datafeed_packet packet;
369         struct sr_datafeed_analog analog;
370         float fvalue;
371         char *eptr;
372
373         if (!strcmp(tokens[0], "9.9E+37")) {
374                 /* An invalid measurement shows up on the display as "OL", but
375                  * comes through like this. Since comparing 38-digit floats
376                  * is rather problematic, we'll cut through this here. */
377                 fvalue = NAN;
378         } else {
379                 fvalue = strtof(tokens[0], &eptr);
380                 if (fvalue == 0.0 && eptr == tokens[0]) {
381                         sr_err("Invalid float '%s'.", tokens[0]);
382                         return;
383                 }
384         }
385
386         devc = sdi->priv;
387         if (devc->mq == -1 || devc->unit == -1)
388                 /* Don't have valid metadata yet. */
389                 return;
390
391
392         if (devc->mq == SR_MQ_RESISTANCE && isnan(fvalue))
393                 fvalue = INFINITY;
394         else if (devc->mq == SR_MQ_CONTINUITY) {
395                 if (isnan(fvalue))
396                         fvalue = 0.0;
397                 else
398                         fvalue = 1.0;
399         }
400
401         analog.probes = sdi->probes;
402         analog.num_samples = 1;
403         analog.data = &fvalue;
404         analog.mq = devc->mq;
405         analog.unit = devc->unit;
406         analog.mqflags = 0;
407         packet.type = SR_DF_ANALOG;
408         packet.payload = &analog;
409         sr_session_send(devc->cb_data, &packet);
410         devc->num_samples++;
411
412 }
413
414 static void handle_line(const struct sr_dev_inst *sdi)
415 {
416         struct dev_context *devc;
417         struct sr_datafeed_packet packet;
418         struct sr_datafeed_analog *analog;
419         int num_tokens, n, i;
420         char cmd[16], **tokens;
421
422         devc = sdi->priv;
423         sr_spew("Received line '%s' (%d).", devc->buf, devc->buflen);
424
425         if (devc->buflen == 1) {
426                 if (devc->buf[0] != '0') {
427                         /* Not just a CMD_ACK from the query command. */
428                         sr_dbg("Got CMD_ACK '%c'.", devc->buf[0]);
429                         devc->expect_response = FALSE;
430                 }
431                 devc->buflen = 0;
432                 return;
433         }
434
435         analog = NULL;
436         tokens = g_strsplit(devc->buf, ",", 0);
437         if (tokens[0]) {
438                 if (devc->profile->model == FLUKE_187) {
439                         devc->expect_response = FALSE;
440                         analog = handle_qm_18x(sdi, tokens);
441                 } else if (devc->profile->model == FLUKE_287) {
442                         devc->expect_response = FALSE;
443                         analog = handle_qm_28x(sdi, tokens);
444                 } else if (devc->profile->model == FLUKE_190) {
445                         devc->expect_response = FALSE;
446                         for (num_tokens = 0; tokens[num_tokens]; num_tokens++);
447                         if (num_tokens >= 7) {
448                                 /* Response to QM: this is a comma-separated list of
449                                  * fields with metadata about the measurement. This
450                                  * format can return multiple sets of metadata,
451                                  * split into sets of 7 tokens each. */
452                                 devc->meas_type = 0;
453                                 for (i = 0; i < num_tokens; i += 7)
454                                         handle_qm_19x_meta(sdi, tokens + i);
455                                 if (devc->meas_type) {
456                                         /* Slip the request in now, before the main
457                                          * timer loop asks for metadata again. */
458                                         n = sprintf(cmd, "QM %d\r", devc->meas_type);
459                                         if (serial_write(devc->serial, cmd, n) == -1)
460                                                 sr_err("Unable to send QM (measurement): %s.",
461                                                                 strerror(errno));
462                                 }
463                         } else {
464                                 /* Response to QM <n> measurement request. */
465                                 handle_qm_19x_data(sdi, tokens);
466                         }
467                 }
468         }
469         g_strfreev(tokens);
470         devc->buflen = 0;
471
472         if (analog) {
473                 /* Got a measurement. */
474                 packet.type = SR_DF_ANALOG;
475                 packet.payload = analog;
476                 sr_session_send(devc->cb_data, &packet);
477                 devc->num_samples++;
478                 g_free(analog->data);
479                 g_free(analog);
480         }
481
482 }
483
484 SR_PRIV int fluke_receive_data(int fd, int revents, void *cb_data)
485 {
486         struct sr_dev_inst *sdi;
487         struct dev_context *devc;
488         int len;
489         int64_t now, elapsed;
490
491         (void)fd;
492
493         if (!(sdi = cb_data))
494                 return TRUE;
495
496         if (!(devc = sdi->priv))
497                 return TRUE;
498
499         if (revents == G_IO_IN) {
500                 /* Serial data arrived. */
501                 while(FLUKEDMM_BUFSIZE - devc->buflen - 1 > 0) {
502                         len = serial_read(devc->serial, devc->buf + devc->buflen, 1);
503                         if (len < 1)
504                                 break;
505                         devc->buflen++;
506                         *(devc->buf + devc->buflen) = '\0';
507                         if (*(devc->buf + devc->buflen - 1) == '\r') {
508                                 *(devc->buf + --devc->buflen) = '\0';
509                                 handle_line(sdi);
510                                 break;
511                         }
512                 }
513         }
514
515         if (devc->limit_samples && devc->num_samples >= devc->limit_samples) {
516                 sdi->driver->dev_acquisition_stop(sdi, cb_data);
517                 return TRUE;
518         }
519
520         now = g_get_monotonic_time() / 1000;
521         elapsed = now - devc->cmd_sent_at;
522         /* Send query command at poll_period interval, or after 1 second
523          * has elapsed. This will make it easier to recover from any
524          * out-of-sync or temporary disconnect issues. */
525         if ((devc->expect_response == FALSE && elapsed > devc->profile->poll_period)
526                         || elapsed > devc->profile->timeout) {
527                 if (serial_write(devc->serial, "QM\r", 3) == -1)
528                         sr_err("Unable to send QM: %s.", strerror(errno));
529                 devc->cmd_sent_at = now;
530                 devc->expect_response = TRUE;
531         }
532
533         return TRUE;
534 }
535
536