]> sigrok.org Git - libsigrok.git/blame - src/dmm/fs9922.c
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / dmm / fs9922.c
CommitLineData
79081ec8 1/*
50985c20 2 * This file is part of the libsigrok project.
79081ec8
UH
3 *
4 * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21/*
22 * Fortune Semiconductor FS9922-DMM3/FS9922-DMM4 protocol parser.
23 */
24
25#include <string.h>
26#include <ctype.h>
27#include <math.h>
28#include <glib.h>
c1aae900 29#include <libsigrok/libsigrok.h>
79081ec8
UH
30#include "libsigrok-internal.h"
31
3544f848 32#define LOG_PREFIX "fs9922"
79081ec8 33
913abe83
UH
34static gboolean flags_valid(const struct fs9922_info *info)
35{
36 int count;
37
38 /* Does the packet have more than one multiplier? */
39 count = 0;
40 count += (info->is_nano) ? 1 : 0;
41 count += (info->is_micro) ? 1 : 0;
42 count += (info->is_milli) ? 1 : 0;
43 count += (info->is_kilo) ? 1 : 0;
44 count += (info->is_mega) ? 1 : 0;
45 if (count > 1) {
ec5186f9 46 sr_dbg("More than one multiplier detected in packet.");
913abe83
UH
47 return FALSE;
48 }
49
649a4cd6
UH
50 /*
51 * Does the packet "measure" more than one type of value?
52 *
53 * Note: In "diode mode", both is_diode and is_volt will be set.
54 * That is a valid use-case, so we don't want to error out below
55 * if it happens. Thus, we don't check for is_diode here.
56 */
913abe83 57 count = 0;
649a4cd6 58 // count += (info->is_diode) ? 1 : 0;
913abe83
UH
59 count += (info->is_percent) ? 1 : 0;
60 count += (info->is_volt) ? 1 : 0;
61 count += (info->is_ampere) ? 1 : 0;
62 count += (info->is_ohm) ? 1 : 0;
63 count += (info->is_hfe) ? 1 : 0;
64 count += (info->is_hertz) ? 1 : 0;
65 count += (info->is_farad) ? 1 : 0;
66 count += (info->is_celsius) ? 1 : 0;
67 count += (info->is_fahrenheit) ? 1 : 0;
68 if (count > 1) {
ec5186f9 69 sr_dbg("More than one measurement type detected in packet.");
913abe83
UH
70 return FALSE;
71 }
72
73 /* Both AC and DC set? */
74 if (info->is_ac && info->is_dc) {
ec5186f9 75 sr_dbg("Both AC and DC flags detected in packet.");
913abe83
UH
76 return FALSE;
77 }
78
79 /* Both Celsius and Fahrenheit set? */
80 if (info->is_celsius && info->is_fahrenheit) {
ec5186f9 81 sr_dbg("Both Celsius and Fahrenheit flags detected in packet.");
913abe83
UH
82 return FALSE;
83 }
84
85 return TRUE;
86}
87
79081ec8
UH
88static int parse_value(const uint8_t *buf, float *result)
89{
90 int sign, intval;
91 float floatval;
92
93 /* Byte 0: Sign ('+' or '-') */
94 if (buf[0] == '+') {
95 sign = 1;
96 } else if (buf[0] == '-') {
97 sign = -1;
98 } else {
ec5186f9 99 sr_dbg("Invalid sign byte: 0x%02x.", buf[0]);
79081ec8
UH
100 return SR_ERR;
101 }
102
103 /*
104 * Bytes 1-4: Value (4 decimal digits)
105 *
106 * Over limit: "0.L" on the display, "?0:?" as protocol "digits".
107 */
108 if (buf[1] == '?' && buf[2] == '0' && buf[3] == ':' && buf[4] == '?') {
109 sr_spew("Over limit.");
110 *result = INFINITY;
111 return SR_OK;
112 } else if (!isdigit(buf[1]) || !isdigit(buf[2]) ||
113 !isdigit(buf[3]) || !isdigit(buf[4])) {
ec5186f9 114 sr_dbg("Value contained invalid digits: %02x %02x %02x %02x ("
79081ec8
UH
115 "%c %c %c %c).", buf[1], buf[2], buf[3], buf[4]);
116 return SR_ERR;
117 }
118 intval = 0;
119 intval += (buf[1] - '0') * 1000;
120 intval += (buf[2] - '0') * 100;
121 intval += (buf[3] - '0') * 10;
122 intval += (buf[4] - '0') * 1;
123
124 floatval = (float)intval;
125
126 /* Byte 5: Always ' ' (space, 0x20) */
127
128 /*
129 * Byte 6: Decimal point position ('0', '1', '2', or '4')
130 *
131 * Note: The Fortune Semiconductor FS9922-DMM3/4 datasheets both have
132 * an error/typo here. They claim that the values '0'/'1'/'2'/'3' are
133 * used, but '0'/'1'/'2'/'4' is actually correct.
134 */
135 if (buf[6] != '0' && buf[6] != '1' && buf[6] != '2' && buf[6] != '4') {
ec5186f9 136 sr_dbg("Invalid decimal point value: 0x%02x.", buf[6]);
79081ec8
UH
137 return SR_ERR;
138 }
139 if (buf[6] == '0')
140 floatval /= 1;
141 else if (buf[6] == '1')
142 floatval /= 1000;
143 else if (buf[6] == '2')
144 floatval /= 100;
145 else if (buf[6] == '4')
146 floatval /= 10;
147
148 /* Apply sign. */
149 floatval *= sign;
150
151 sr_spew("The display value is %f.", floatval);
152
153 *result = floatval;
154
155 return SR_OK;
156}
157
913abe83 158static void parse_flags(const uint8_t *buf, struct fs9922_info *info)
79081ec8 159{
79081ec8
UH
160 /* Z1/Z2/Z3/Z4 are bits for user-defined LCD symbols (on/off). */
161
162 /* Byte 7 */
163 /* Bit 7: Always 0 */
164 /* Bit 6: Always 0 */
913abe83
UH
165 info->is_auto = (buf[7] & (1 << 5)) != 0;
166 info->is_dc = (buf[7] & (1 << 4)) != 0;
167 info->is_ac = (buf[7] & (1 << 3)) != 0;
168 info->is_rel = (buf[7] & (1 << 2)) != 0;
169 info->is_hold = (buf[7] & (1 << 1)) != 0;
170 info->is_bpn = (buf[7] & (1 << 0)) != 0; /* Bargraph shown */
79081ec8
UH
171
172 /* Byte 8 */
913abe83
UH
173 info->is_z1 = (buf[8] & (1 << 7)) != 0; /* User symbol 1 */
174 info->is_z2 = (buf[8] & (1 << 6)) != 0; /* User symbol 2 */
175 info->is_max = (buf[8] & (1 << 5)) != 0;
176 info->is_min = (buf[8] & (1 << 4)) != 0;
177 info->is_apo = (buf[8] & (1 << 3)) != 0; /* Auto-poweroff on */
178 info->is_bat = (buf[8] & (1 << 2)) != 0; /* Battery low */
179 info->is_nano = (buf[8] & (1 << 1)) != 0;
180 info->is_z3 = (buf[8] & (1 << 0)) != 0; /* User symbol 3 */
79081ec8
UH
181
182 /* Byte 9 */
913abe83
UH
183 info->is_micro = (buf[9] & (1 << 7)) != 0;
184 info->is_milli = (buf[9] & (1 << 6)) != 0;
185 info->is_kilo = (buf[9] & (1 << 5)) != 0;
186 info->is_mega = (buf[9] & (1 << 4)) != 0;
187 info->is_beep = (buf[9] & (1 << 3)) != 0;
188 info->is_diode = (buf[9] & (1 << 2)) != 0;
189 info->is_percent = (buf[9] & (1 << 1)) != 0;
98494dc8 190 info->is_z4 = (buf[9] & (1 << 0)) != 0; /* User symbol 4 */
79081ec8
UH
191
192 /* Byte 10 */
913abe83
UH
193 info->is_volt = (buf[10] & (1 << 7)) != 0;
194 info->is_ampere = (buf[10] & (1 << 6)) != 0;
195 info->is_ohm = (buf[10] & (1 << 5)) != 0;
196 info->is_hfe = (buf[10] & (1 << 4)) != 0;
197 info->is_hertz = (buf[10] & (1 << 3)) != 0;
198 info->is_farad = (buf[10] & (1 << 2)) != 0;
199 info->is_celsius = (buf[10] & (1 << 1)) != 0; /* Only FS9922-DMM4 */
200 info->is_fahrenheit = (buf[10] & (1 << 0)) != 0; /* Only FS9922-DMM4 */
79081ec8
UH
201
202 /*
203 * Byte 11: Bar graph
204 *
205 * Bit 7 contains the sign of the bargraph number (if the bit is set,
206 * the number is negative), bits 6..0 contain the actual number.
207 * Valid range: 0-40 (FS9922-DMM3), 0-60 (FS9922-DMM4).
208 *
209 * Upon "over limit" the bargraph value is 1 count above the highest
210 * valid number (i.e. 41 or 61, depending on chip).
211 */
913abe83
UH
212 if (info->is_bpn) {
213 info->bargraph_sign = ((buf[11] & (1 << 7)) != 0) ? -1 : 1;
214 info->bargraph_value = (buf[11] & 0x7f);
215 info->bargraph_value *= info->bargraph_sign;
79081ec8
UH
216 }
217
218 /* Byte 12: Always '\r' (carriage return, 0x0d, 13) */
219
220 /* Byte 13: Always '\n' (newline, 0x0a, 10) */
913abe83 221}
79081ec8 222
913abe83
UH
223static void handle_flags(struct sr_datafeed_analog *analog, float *floatval,
224 const struct fs9922_info *info)
225{
79081ec8 226 /* Factors */
913abe83 227 if (info->is_nano)
79081ec8 228 *floatval /= 1000000000;
913abe83 229 if (info->is_micro)
79081ec8 230 *floatval /= 1000000;
913abe83 231 if (info->is_milli)
79081ec8 232 *floatval /= 1000;
913abe83 233 if (info->is_kilo)
79081ec8 234 *floatval *= 1000;
913abe83 235 if (info->is_mega)
79081ec8
UH
236 *floatval *= 1000000;
237
238 /* Measurement modes */
649a4cd6
UH
239 if (info->is_volt || info->is_diode) {
240 /* Note: In "diode mode" both is_diode and is_volt are set. */
79081ec8
UH
241 analog->mq = SR_MQ_VOLTAGE;
242 analog->unit = SR_UNIT_VOLT;
243 }
913abe83 244 if (info->is_ampere) {
79081ec8
UH
245 analog->mq = SR_MQ_CURRENT;
246 analog->unit = SR_UNIT_AMPERE;
247 }
913abe83 248 if (info->is_ohm) {
79081ec8
UH
249 analog->mq = SR_MQ_RESISTANCE;
250 analog->unit = SR_UNIT_OHM;
251 }
913abe83 252 if (info->is_hfe) {
79081ec8
UH
253 analog->mq = SR_MQ_GAIN;
254 analog->unit = SR_UNIT_UNITLESS;
255 }
913abe83 256 if (info->is_hertz) {
79081ec8
UH
257 analog->mq = SR_MQ_FREQUENCY;
258 analog->unit = SR_UNIT_HERTZ;
259 }
913abe83 260 if (info->is_farad) {
79081ec8
UH
261 analog->mq = SR_MQ_CAPACITANCE;
262 analog->unit = SR_UNIT_FARAD;
263 }
913abe83 264 if (info->is_celsius) {
79081ec8
UH
265 analog->mq = SR_MQ_TEMPERATURE;
266 analog->unit = SR_UNIT_CELSIUS;
267 }
913abe83 268 if (info->is_fahrenheit) {
79081ec8
UH
269 analog->mq = SR_MQ_TEMPERATURE;
270 analog->unit = SR_UNIT_FAHRENHEIT;
271 }
913abe83 272 if (info->is_beep) {
79081ec8
UH
273 analog->mq = SR_MQ_CONTINUITY;
274 analog->unit = SR_UNIT_BOOLEAN;
ad00a54d 275 *floatval = (*floatval == INFINITY) ? 0.0 : 1.0;
79081ec8 276 }
913abe83 277 if (info->is_percent) {
79081ec8
UH
278 analog->mq = SR_MQ_DUTY_CYCLE;
279 analog->unit = SR_UNIT_PERCENTAGE;
280 }
281
282 /* Measurement related flags */
913abe83 283 if (info->is_ac)
79081ec8 284 analog->mqflags |= SR_MQFLAG_AC;
913abe83 285 if (info->is_dc)
79081ec8 286 analog->mqflags |= SR_MQFLAG_DC;
913abe83 287 if (info->is_auto)
79081ec8 288 analog->mqflags |= SR_MQFLAG_AUTORANGE;
a6ed50f4
UH
289 if (info->is_diode)
290 analog->mqflags |= SR_MQFLAG_DIODE;
913abe83 291 if (info->is_hold)
79081ec8 292 analog->mqflags |= SR_MQFLAG_HOLD;
913abe83 293 if (info->is_max)
79081ec8 294 analog->mqflags |= SR_MQFLAG_MAX;
913abe83 295 if (info->is_min)
79081ec8 296 analog->mqflags |= SR_MQFLAG_MIN;
913abe83 297 if (info->is_rel)
79081ec8
UH
298 analog->mqflags |= SR_MQFLAG_RELATIVE;
299
300 /* Other flags */
913abe83 301 if (info->is_apo)
79081ec8 302 sr_spew("Automatic power-off function is active.");
913abe83 303 if (info->is_bat)
79081ec8 304 sr_spew("Battery is low.");
913abe83 305 if (info->is_z1)
79081ec8 306 sr_spew("User-defined LCD symbol 1 is active.");
913abe83 307 if (info->is_z2)
79081ec8 308 sr_spew("User-defined LCD symbol 2 is active.");
913abe83 309 if (info->is_z3)
79081ec8 310 sr_spew("User-defined LCD symbol 3 is active.");
913abe83 311 if (info->is_z4)
79081ec8 312 sr_spew("User-defined LCD symbol 4 is active.");
913abe83
UH
313 if (info->is_bpn)
314 sr_spew("The bargraph value is %d.", info->bargraph_value);
315 else
316 sr_spew("The bargraph is not active.");
79081ec8 317
913abe83
UH
318}
319
320SR_PRIV gboolean sr_fs9922_packet_valid(const uint8_t *buf)
321{
322 struct fs9922_info info;
323
324 /* Byte 0: Sign (must be '+' or '-') */
325 if (buf[0] != '+' && buf[0] != '-')
326 return FALSE;
327
328 /* Byte 12: Always '\r' (carriage return, 0x0d, 13) */
329 /* Byte 13: Always '\n' (newline, 0x0a, 10) */
330 if (buf[12] != '\r' || buf[13] != '\n')
331 return FALSE;
332
333 parse_flags(buf, &info);
334
335 return flags_valid(&info);
79081ec8
UH
336}
337
338/**
913abe83 339 * Parse a protocol packet.
79081ec8 340 *
913abe83
UH
341 * @param buf Buffer containing the protocol packet. Must not be NULL.
342 * @param floatval Pointer to a float variable. That variable will contain the
343 * result value upon parsing success. Must not be NULL.
79081ec8
UH
344 * @param analog Pointer to a struct sr_datafeed_analog. The struct will be
345 * filled with data according to the protocol packet.
913abe83
UH
346 * Must not be NULL.
347 * @param info Pointer to a struct fs9922_info. The struct will be filled
348 * with data according to the protocol packet. Must not be NULL.
79081ec8
UH
349 *
350 * @return SR_OK upon success, SR_ERR upon failure. Upon errors, the
351 * 'analog' variable contents are undefined and should not be used.
352 */
913abe83
UH
353SR_PRIV int sr_fs9922_parse(const uint8_t *buf, float *floatval,
354 struct sr_datafeed_analog *analog, void *info)
79081ec8
UH
355{
356 int ret;
913abe83
UH
357 struct fs9922_info *info_local;
358
359 info_local = (struct fs9922_info *)info;
79081ec8
UH
360
361 if ((ret = parse_value(buf, floatval)) != SR_OK) {
ec5186f9 362 sr_dbg("Error parsing value: %d.", ret);
79081ec8
UH
363 return ret;
364 }
365
913abe83
UH
366 parse_flags(buf, info_local);
367 handle_flags(analog, floatval, info_local);
79081ec8
UH
368
369 return SR_OK;
370}
e52bb9be
UH
371
372SR_PRIV void sr_fs9922_z1_diode(struct sr_datafeed_analog *analog, void *info)
373{
374 struct fs9922_info *info_local;
375
376 info_local = (struct fs9922_info *)info;
377
378 /* User-defined z1 flag means "diode mode". */
379 if (info_local->is_z1) {
380 analog->mq = SR_MQ_VOLTAGE;
381 analog->unit = SR_UNIT_VOLT;
382 analog->mqflags |= SR_MQFLAG_DIODE;
383 }
384}