]> sigrok.org Git - libsigrok.git/blame - src/lcr/es51919.c
output/csv: use intermediate time_t var, silence compiler warning
[libsigrok.git] / src / lcr / es51919.c
CommitLineData
6bcb3ee8
JH
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Janne Huttunen <jahuttun@gmail.com>
bf5c4d46 5 * Copyright (C) 2019 Gerhard Sittig <gerhard.sittig@gmx.net>
6bcb3ee8
JH
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 3 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, see <http://www.gnu.org/licenses/>.
19 */
20
6ec6c43b 21#include <config.h>
6bcb3ee8 22#include <glib.h>
c1aae900 23#include <libsigrok/libsigrok.h>
6bcb3ee8 24#include "libsigrok-internal.h"
bf5c4d46
GS
25#include <math.h>
26#include <stdint.h>
27#include <string.h>
6bcb3ee8
JH
28
29#define LOG_PREFIX "es51919"
30
48b7c346
GS
31#ifdef HAVE_SERIAL_COMM
32
6bcb3ee8
JH
33/*
34 * Cyrustek ES51919 LCR chipset host protocol.
35 *
36 * Public official documentation does not contain the protocol
37 * description, so this is all based on reverse engineering.
38 *
39 * Packet structure (17 bytes):
40 *
41 * 0x00: header1 ?? (0x00)
42 * 0x01: header2 ?? (0x0d)
43 *
44 * 0x02: flags
45 * bit 0 = hold enabled
46 * bit 1 = reference shown (in delta mode)
47 * bit 2 = delta mode
48 * bit 3 = calibration mode
49 * bit 4 = sorting mode
50 * bit 5 = LCR mode
51 * bit 6 = auto mode
52 * bit 7 = parallel measurement (vs. serial)
53 *
54 * 0x03: config
55 * bit 0-4 = ??? (0x10)
56 * bit 5-7 = test frequency
57 * 0 = 100 Hz
58 * 1 = 120 Hz
59 * 2 = 1 kHz
60 * 3 = 10 kHz
61 * 4 = 100 kHz
62 * 5 = 0 Hz (DC)
63 *
64 * 0x04: tolerance (sorting mode)
65 * 0 = not set
66 * 3 = +-0.25%
67 * 4 = +-0.5%
68 * 5 = +-1%
69 * 6 = +-2%
70 * 7 = +-5%
71 * 8 = +-10%
72 * 9 = +-20%
73 * 10 = -20+80%
74 *
75 * 0x05-0x09: primary measurement
76 * 0x05: measured quantity
77 * 1 = inductance
78 * 2 = capacitance
79 * 3 = resistance
80 * 4 = DC resistance
81 * 0x06: measurement MSB (0x4e20 = 20000 = outside limits)
82 * 0x07: measurement LSB
83 * 0x08: measurement info
84 * bit 0-2 = decimal point multiplier (10^-val)
85 * bit 3-7 = unit
86 * 0 = no unit
87 * 1 = Ohm
88 * 2 = kOhm
89 * 3 = MOhm
90 * 5 = uH
91 * 6 = mH
92 * 7 = H
93 * 8 = kH
94 * 9 = pF
95 * 10 = nF
96 * 11 = uF
97 * 12 = mF
98 * 13 = %
99 * 14 = degree
100 * 0x09: measurement status
101 * bit 0-3 = status
102 * 0 = normal (measurement shown)
103 * 1 = blank (nothing shown)
104 * 2 = lines ("----")
99d090d8 105 * 3 = outside limits ("OL")
6bcb3ee8
JH
106 * 7 = pass ("PASS")
107 * 8 = fail ("FAIL")
108 * 9 = open ("OPEn")
109 * 10 = shorted ("Srt")
110 * bit 4-6 = ??? (maybe part of same field with 0-3)
111 * bit 7 = ??? (some independent flag)
112 *
113 * 0x0a-0x0e: secondary measurement
114 * 0x0a: measured quantity
115 * 0 = none
116 * 1 = dissipation factor
117 * 2 = quality factor
118 * 3 = parallel AC resistance / ESR
119 * 4 = phase angle
120 * 0x0b-0x0e: like primary measurement
121 *
122 * 0x0f: footer1 (0x0d) ?
123 * 0x10: footer2 (0x0a) ?
124 */
125
b94dd07b 126static const double frequencies[] = {
238b874e
GS
127 SR_HZ(0), SR_HZ(100), SR_HZ(120),
128 SR_KHZ(1), SR_KHZ(10), SR_KHZ(100),
6bcb3ee8
JH
129};
130
bf5c4d46
GS
131static const size_t freq_code_map[] = {
132 1, 2, 3, 4, 5, 0,
a42a39ac
JH
133};
134
bf5c4d46
GS
135static uint64_t get_frequency(size_t code)
136{
137 uint64_t freq;
6bcb3ee8 138
bf5c4d46
GS
139 if (code >= ARRAY_SIZE(freq_code_map)) {
140 sr_err("Unknown output frequency code %zu.", code);
141 return frequencies[0];
142 }
6bcb3ee8 143
bf5c4d46
GS
144 code = freq_code_map[code];
145 freq = frequencies[code];
6bcb3ee8 146
bf5c4d46
GS
147 return freq;
148}
a42a39ac 149
bf5c4d46
GS
150enum { MODEL_NONE, MODEL_PAR, MODEL_SER, MODEL_AUTO, };
151
152static const char *const circuit_models[] = {
153 "NONE", "PARALLEL", "SERIES", "AUTO",
6bcb3ee8
JH
154};
155
bf5c4d46
GS
156static const char *get_equiv_model(size_t code)
157{
158 if (code >= ARRAY_SIZE(circuit_models)) {
159 sr_err("Unknown equivalent circuit model code %zu.", code);
160 return "NONE";
161 }
162
163 return circuit_models[code];
164}
165
a42a39ac 166static const uint8_t *pkt_to_buf(const uint8_t *pkt, int is_secondary)
6bcb3ee8 167{
a42a39ac
JH
168 return is_secondary ? pkt + 10 : pkt + 5;
169}
170
171static int parse_mq(const uint8_t *pkt, int is_secondary, int is_parallel)
172{
173 const uint8_t *buf;
174
175 buf = pkt_to_buf(pkt, is_secondary);
176
6bcb3ee8
JH
177 switch (is_secondary << 8 | buf[0]) {
178 case 0x001:
1beccaed 179 return is_parallel ?
c7c8994c 180 SR_MQ_PARALLEL_INDUCTANCE : SR_MQ_SERIES_INDUCTANCE;
6bcb3ee8
JH
181 case 0x002:
182 return is_parallel ?
c7c8994c 183 SR_MQ_PARALLEL_CAPACITANCE : SR_MQ_SERIES_CAPACITANCE;
6bcb3ee8
JH
184 case 0x003:
185 case 0x103:
186 return is_parallel ?
c7c8994c 187 SR_MQ_PARALLEL_RESISTANCE : SR_MQ_SERIES_RESISTANCE;
6bcb3ee8
JH
188 case 0x004:
189 return SR_MQ_RESISTANCE;
190 case 0x100:
191 return SR_MQ_DIFFERENCE;
192 case 0x101:
193 return SR_MQ_DISSIPATION_FACTOR;
194 case 0x102:
195 return SR_MQ_QUALITY_FACTOR;
196 case 0x104:
197 return SR_MQ_PHASE_ANGLE;
198 }
199
200 sr_err("Unknown quantity 0x%03x.", is_secondary << 8 | buf[0]);
201
7ffcf587 202 return 0;
6bcb3ee8
JH
203}
204
24b6882f 205static float parse_value(const uint8_t *buf, int *digits)
6bcb3ee8 206{
24b6882f 207 static const int exponents[] = {0, -1, -2, -3, -4, -5, -6, -7};
bf5c4d46 208
24b6882f 209 int exponent;
6bcb3ee8 210 int16_t val;
bf5c4d46 211 float fval;
6bcb3ee8 212
24b6882f
AJ
213 exponent = exponents[buf[3] & 7];
214 *digits = -exponent;
6bcb3ee8 215 val = (buf[1] << 8) | buf[2];
bf5c4d46
GS
216 fval = (float)val;
217 fval *= powf(10, exponent);
218
219 return fval;
6bcb3ee8
JH
220}
221
222static void parse_measurement(const uint8_t *pkt, float *floatval,
bf5c4d46 223 struct sr_datafeed_analog *analog, int is_secondary)
6bcb3ee8
JH
224{
225 static const struct {
226 int unit;
24b6882f 227 int exponent;
6bcb3ee8 228 } units[] = {
d9251a2c
UH
229 { SR_UNIT_UNITLESS, 0 }, /* no unit */
230 { SR_UNIT_OHM, 0 }, /* Ohm */
231 { SR_UNIT_OHM, 3 }, /* kOhm */
232 { SR_UNIT_OHM, 6 }, /* MOhm */
233 { -1, 0 }, /* ??? */
234 { SR_UNIT_HENRY, -6 }, /* uH */
235 { SR_UNIT_HENRY, -3 }, /* mH */
236 { SR_UNIT_HENRY, 0 }, /* H */
237 { SR_UNIT_HENRY, 3 }, /* kH */
238 { SR_UNIT_FARAD, -12 }, /* pF */
239 { SR_UNIT_FARAD, -9 }, /* nF */
240 { SR_UNIT_FARAD, -6 }, /* uF */
241 { SR_UNIT_FARAD, -3 }, /* mF */
242 { SR_UNIT_PERCENTAGE, 0 }, /* % */
243 { SR_UNIT_DEGREE, 0 }, /* degree */
6bcb3ee8 244 };
bf5c4d46 245
6bcb3ee8 246 const uint8_t *buf;
24b6882f 247 int digits, exponent;
6bcb3ee8
JH
248 int state;
249
a42a39ac 250 buf = pkt_to_buf(pkt, is_secondary);
6bcb3ee8 251
7ffcf587
UH
252 analog->meaning->mq = 0;
253 analog->meaning->mqflags = 0;
6bcb3ee8
JH
254
255 state = buf[4] & 0xf;
256
257 if (state != 0 && state != 3)
258 return;
259
260 if (pkt[2] & 0x18) {
261 /* Calibration and Sorting modes not supported. */
262 return;
263 }
264
265 if (!is_secondary) {
266 if (pkt[2] & 0x01)
7ffcf587 267 analog->meaning->mqflags |= SR_MQFLAG_HOLD;
6bcb3ee8 268 if (pkt[2] & 0x02)
7ffcf587 269 analog->meaning->mqflags |= SR_MQFLAG_REFERENCE;
6bcb3ee8
JH
270 } else {
271 if (pkt[2] & 0x04)
7ffcf587 272 analog->meaning->mqflags |= SR_MQFLAG_RELATIVE;
6bcb3ee8
JH
273 }
274
693c5248 275 if ((analog->meaning->mq = parse_mq(pkt, is_secondary, pkt[2] & 0x80)) == 0)
6bcb3ee8
JH
276 return;
277
278 if ((buf[3] >> 3) >= ARRAY_SIZE(units)) {
279 sr_err("Unknown unit %u.", buf[3] >> 3);
7ffcf587 280 analog->meaning->mq = 0;
6bcb3ee8
JH
281 return;
282 }
283
7ffcf587 284 analog->meaning->unit = units[buf[3] >> 3].unit;
6bcb3ee8 285
24b6882f
AJ
286 exponent = units[buf[3] >> 3].exponent;
287 *floatval = parse_value(buf, &digits);
288 *floatval *= (state == 0) ? powf(10, exponent) : INFINITY;
289 analog->encoding->digits = digits - exponent;
290 analog->spec->spec_digits = digits - exponent;
6bcb3ee8
JH
291}
292
bf5c4d46 293static uint64_t parse_freq(const uint8_t *pkt)
6bcb3ee8 294{
bf5c4d46 295 return get_frequency(pkt[3] >> 5);
6bcb3ee8
JH
296}
297
bf5c4d46 298static const char *parse_model(const uint8_t *pkt)
a42a39ac 299{
bf5c4d46
GS
300 size_t code;
301
a42a39ac 302 if (pkt[2] & 0x40)
bf5c4d46 303 code = MODEL_AUTO;
a42a39ac 304 else if (parse_mq(pkt, 0, 0) == SR_MQ_RESISTANCE)
bf5c4d46 305 code = MODEL_NONE;
a42a39ac 306 else
bf5c4d46 307 code = (pkt[2] & 0x80) ? MODEL_PAR : MODEL_SER;
6bcb3ee8 308
bf5c4d46 309 return get_equiv_model(code);
6bcb3ee8
JH
310}
311
bf5c4d46 312SR_PRIV gboolean es51919_packet_valid(const uint8_t *pkt)
6bcb3ee8 313{
6bcb3ee8 314
bf5c4d46
GS
315 /* Check for fixed 0x00 0x0d prefix. */
316 if (pkt[0] != 0x00 || pkt[1] != 0x0d)
317 return FALSE;
6bcb3ee8 318
bf5c4d46
GS
319 /* Check for fixed 0x0d 0x0a suffix. */
320 if (pkt[15] != 0x0d || pkt[16] != 0x0a)
321 return FALSE;
6bcb3ee8 322
bf5c4d46 323 /* Packet appears to be valid. */
6bcb3ee8
JH
324 return TRUE;
325}
326
bf5c4d46
GS
327SR_PRIV int es51919_packet_parse(const uint8_t *pkt, float *val,
328 struct sr_datafeed_analog *analog, void *info)
6bcb3ee8 329{
bf5c4d46 330 struct lcr_parse_info *parse_info;
6bcb3ee8 331
bf5c4d46
GS
332 parse_info = info;
333 if (!parse_info->ch_idx) {
334 parse_info->output_freq = parse_freq(pkt);
335 parse_info->circuit_model = parse_model(pkt);
6bcb3ee8 336 }
bf5c4d46
GS
337 if (val && analog)
338 parse_measurement(pkt, val, analog, parse_info->ch_idx == 1);
6bcb3ee8
JH
339
340 return SR_OK;
341}
342
bf5c4d46
GS
343/*
344 * These are the get/set/list routines for the _chip_ specific parameters,
345 * the _device_ driver resides in src/hardware/serial-lcr/ instead.
346 */
347
348SR_PRIV int es51919_config_list(uint32_t key, GVariant **data,
349 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6bcb3ee8 350{
6bcb3ee8 351
bf5c4d46 352 (void)sdi;
6bcb3ee8
JH
353 (void)cg;
354
6bcb3ee8 355 switch (key) {
6bcb3ee8 356 case SR_CONF_OUTPUT_FREQUENCY:
b94dd07b 357 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_DOUBLE,
238b874e 358 ARRAY_AND_SIZE(frequencies), sizeof(frequencies[0]));
bf5c4d46 359 return SR_OK;
a42a39ac 360 case SR_CONF_EQUIV_CIRCUIT_MODEL:
bf5c4d46
GS
361 *data = g_variant_new_strv(ARRAY_AND_SIZE(circuit_models));
362 return SR_OK;
6bcb3ee8 363 default:
6bcb3ee8
JH
364 return SR_ERR_NA;
365 }
bf5c4d46 366 /* UNREACH */
6bcb3ee8 367}
48b7c346
GS
368
369#endif