]> sigrok.org Git - libsigrok.git/blame - src/hardware/korad-kaxxxxp/protocol.c
korad-kaxxxxp: silence compiler warning (unused value)
[libsigrok.git] / src / hardware / korad-kaxxxxp / protocol.c
CommitLineData
e75ee7de
HV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2015 Hannu Vuolasaho <vuokkosetae@gmail.com>
2e129b8b 5 * Copyright (C) 2018-2019 Frank Stettner <frank-stettner@gmx.net>
e75ee7de
HV
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
21#include <config.h>
22#include "protocol.h"
23
d7083042
HV
24#define DEVICE_PROCESSING_TIME_MS 80
25
16fc7ee2 26SR_PRIV int korad_kaxxxxp_send_cmd(struct sr_serial_dev_inst *serial,
d7083042
HV
27 const char *cmd)
28{
29 int ret;
30
31 sr_dbg("Sending '%s'.", cmd);
32 if ((ret = serial_write_blocking(serial, cmd, strlen(cmd), 0)) < 0) {
33 sr_err("Error sending command: %d.", ret);
34 return ret;
35 }
36
37 return ret;
38}
39
d2cc60bd
GS
40/**
41 * Read a variable length non-terminated string (caller specified maximum size).
42 *
43 * @param[in] serial The serial port to read from.
44 * @param[in] count The maximum amount of data to read.
45 * @param[out] buf The buffer to read data into. Must be larger than @a count.
46 *
47 * @return The amount of received data, or negative in case of error.
48 * See @ref SR_ERR and other error codes.
49 *
50 * @internal
51 *
52 * The protocol has no concept of request/response termination. The only
53 * terminating conditions are either the caller's expected maxmimum byte
54 * count, or a period of time without receive data. It's essential to
55 * accept a longer initial period of time before the first receive data
56 * is seen. The supported devices can be very slow to respond.
57 *
58 * The protocol is text based. That's why the 'count' parameter specifies
59 * the expected number of text characters, and does not include the NUL
60 * termination which is not part of the wire protocol but gets added by
61 * the receive routine. The caller provided buffer is expected to have
62 * enough space for the text data and the NUL termination.
63 *
64 * Implementation detail: It's assumed that once receive data was seen,
65 * remaining response data will follow at wire speed. No further delays
66 * are expected beyond bitrate expectations. All normal commands in the
67 * acquisition phase are of fixed length which is known to the caller.
68 * Identification during device scan needs to deal with variable length
69 * data. Quick termination after reception is important there, as is the
70 * larger initial timeout period before receive data is seen.
71 */
16fc7ee2 72SR_PRIV int korad_kaxxxxp_read_chars(struct sr_serial_dev_inst *serial,
d2cc60bd 73 size_t count, char *buf)
d7083042 74{
d2cc60bd
GS
75 int timeout_first, timeout_later, timeout;
76 size_t retries_first, retries_later, retries;
77 size_t received;
78 int ret;
d7083042 79
d2cc60bd
GS
80 /* Clear the buffer early, to simplify the receive code path. */
81 memset(buf, 0, count + 1);
d7083042 82
d2cc60bd
GS
83 /*
84 * This calculation is aiming for backwards compatibility with
85 * an earlier implementation. An initial timeout is used which
86 * depends on the expected response byte count, and a maximum
87 * iteration count is used for read attempts.
88 *
89 * TODO Consider an absolute initial timeout instead, to reduce
90 * accumulated rounding errors for serial timeout results. The
91 * iteration with a short period is still required for variable
92 * length responses, because otherwise the serial communication
93 * layer would spend the total amount of time waiting for the
94 * remaining bytes, while the device probe code path by design
95 * passes a larger acceptable count than the typical and legal
96 * response would occupy.
97 *
98 * After initial receive data was seen, a shorter timeout is
99 * used which corresponds to a few bytes at wire speed. Idle
100 * periods without receive data longer than this threshold are
101 * taken as the end of the response. This is not compatible to
102 * the previous implementation, but was found to work as well.
103 * And severely reduces the time spent scanning for devices.
104 */
105 timeout_first = serial_timeout(serial, count);
106 retries_first = 100;
107 timeout_later = serial_timeout(serial, 3);
108 retries_later = 1;
109
110 sr_spew("want %zu bytes, timeout/retry: init %d/%zu, later %d/%zu.",
111 count, timeout_first, retries_first,
112 timeout_later, retries_later);
113
114 /*
115 * Run a sequence of read attempts. Try with the larger timeout
116 * and a high retry count until the first receive data became
117 * available. Then continue with a short timeout and small retry
118 * count.
119 *
120 * Failed read is fatal, immediately terminates the read sequence.
121 * A timeout in the initial phase just keeps repeating. A timeout
122 * after receive data was seen regularly terminates the sequence.
123 * Successful reads of non-empty responses keep extending the
124 * read sequence until no more receive data is available.
125 */
126 received = 0;
127 timeout = timeout_first;
128 retries = retries_first;
129 while (received < count && retries--) {
130 ret = serial_read_blocking(serial,
131 &buf[received], count - received, timeout);
132 if (ret < 0) {
133 sr_err("Error %d reading %zu bytes from device.",
d7083042
HV
134 ret, count);
135 return ret;
136 }
d2cc60bd
GS
137 if (ret == 0 && !received)
138 continue;
139 if (ret == 0 && received) {
140 sr_spew("receive timed out, want %zu, received %zu.",
141 count, received);
142 break;
143 }
d7083042 144 received += ret;
d2cc60bd
GS
145 timeout = timeout_later;
146 retries = retries_later;
147 }
148 /* TODO Escape non-printables? Seen those with status queries. */
149 sr_dbg("got %zu bytes, received: '%s'.", received, buf);
d7083042 150
d2cc60bd 151 return received;
d7083042
HV
152}
153
154static void give_device_time_to_process(struct dev_context *devc)
155{
156 int64_t sleeping_time;
157
158 sleeping_time = devc->req_sent_at + (DEVICE_PROCESSING_TIME_MS * 1000);
159 sleeping_time -= g_get_monotonic_time();
160
161 if (sleeping_time > 0) {
162 g_usleep(sleeping_time);
ef2bcf11 163 sr_spew("Sleeping for processing %" PRIi64 " usec", sleeping_time);
d7083042
HV
164 }
165}
166
16fc7ee2 167SR_PRIV int korad_kaxxxxp_set_value(struct sr_serial_dev_inst *serial,
3f9b48ae 168 int target, struct dev_context *devc)
d7083042 169{
8f39d569 170 char *msg;
2c240774 171 const char *cmd;
d7083042
HV
172 float value;
173 int ret;
174
3f9b48ae 175 g_mutex_lock(&devc->rw_mutex);
d7083042
HV
176 give_device_time_to_process(devc);
177
3f9b48ae 178 switch (target) {
16fc7ee2
UH
179 case KAXXXXP_CURRENT:
180 case KAXXXXP_VOLTAGE:
181 case KAXXXXP_STATUS:
3f9b48ae
FS
182 sr_err("Can't set measurable parameter %d.", target);
183 g_mutex_unlock(&devc->rw_mutex);
d7083042 184 return SR_ERR;
8da30037 185 case KAXXXXP_CURRENT_LIMIT:
d7083042 186 cmd = "ISET1:%05.3f";
8da30037 187 value = devc->set_current_limit;
d7083042 188 break;
8da30037 189 case KAXXXXP_VOLTAGE_TARGET:
d7083042 190 cmd = "VSET1:%05.2f";
8da30037 191 value = devc->set_voltage_target;
d7083042 192 break;
16fc7ee2 193 case KAXXXXP_OUTPUT:
d7083042 194 cmd = "OUT%01.0f";
8da30037
FS
195 value = (devc->set_output_enabled) ? 1 : 0;
196 /* Set value back to recognize changes */
197 devc->output_enabled = devc->set_output_enabled;
d7083042 198 break;
16fc7ee2 199 case KAXXXXP_BEEP:
d7083042 200 cmd = "BEEP%01.0f";
8da30037 201 value = (devc->set_beep_enabled) ? 1 : 0;
d7083042 202 break;
16fc7ee2 203 case KAXXXXP_OCP:
c40ed60f 204 cmd = "OCP%01.0f";
8da30037
FS
205 value = (devc->set_ocp_enabled) ? 1 : 0;
206 /* Set value back to recognize changes */
207 devc->ocp_enabled = devc->set_ocp_enabled;
c40ed60f 208 break;
16fc7ee2 209 case KAXXXXP_OVP:
c40ed60f 210 cmd = "OVP%01.0f";
8da30037
FS
211 value = (devc->set_ovp_enabled) ? 1 : 0;
212 /* Set value back to recognize changes */
213 devc->ovp_enabled = devc->set_ovp_enabled;
c40ed60f 214 break;
16fc7ee2 215 case KAXXXXP_SAVE:
d7083042
HV
216 cmd = "SAV%01.0f";
217 if (devc->program < 1 || devc->program > 5) {
218 sr_err("Only programs 1-5 supported and %d isn't "
219 "between them.", devc->program);
3f9b48ae 220 g_mutex_unlock(&devc->rw_mutex);
d7083042
HV
221 return SR_ERR;
222 }
223 value = devc->program;
224 break;
16fc7ee2 225 case KAXXXXP_RECALL:
d7083042
HV
226 cmd = "RCL%01.0f";
227 if (devc->program < 1 || devc->program > 5) {
228 sr_err("Only programs 1-5 supported and %d isn't "
229 "between them.", devc->program);
3f9b48ae 230 g_mutex_unlock(&devc->rw_mutex);
d7083042
HV
231 return SR_ERR;
232 }
233 value = devc->program;
234 break;
235 default:
3f9b48ae
FS
236 sr_err("Don't know how to set %d.", target);
237 g_mutex_unlock(&devc->rw_mutex);
d7083042
HV
238 return SR_ERR;
239 }
240
8f39d569 241 msg = g_malloc0(20 + 1);
d7083042 242 if (cmd)
8f39d569 243 sr_snprintf_ascii(msg, 20, cmd, value);
d7083042 244
16fc7ee2 245 ret = korad_kaxxxxp_send_cmd(serial, msg);
d7083042 246 devc->req_sent_at = g_get_monotonic_time();
8f39d569 247 g_free(msg);
3f9b48ae
FS
248
249 g_mutex_unlock(&devc->rw_mutex);
d7083042
HV
250
251 return ret;
252}
253
3f9b48ae
FS
254SR_PRIV int korad_kaxxxxp_get_value(struct sr_serial_dev_inst *serial,
255 int target, struct dev_context *devc)
d7083042 256{
3f9b48ae
FS
257 int ret, count;
258 char reply[6];
259 float *value;
260 char status_byte;
2e129b8b 261 gboolean prev_status;
d7083042 262
3f9b48ae 263 g_mutex_lock(&devc->rw_mutex);
d7083042
HV
264 give_device_time_to_process(devc);
265
3f9b48ae
FS
266 value = NULL;
267 count = 5;
268
269 switch (target) {
16fc7ee2 270 case KAXXXXP_CURRENT:
d7083042 271 /* Read current from device. */
16fc7ee2 272 ret = korad_kaxxxxp_send_cmd(serial, "IOUT1?");
3f9b48ae 273 value = &(devc->current);
d7083042 274 break;
8da30037 275 case KAXXXXP_CURRENT_LIMIT:
d7083042 276 /* Read set current from device. */
16fc7ee2 277 ret = korad_kaxxxxp_send_cmd(serial, "ISET1?");
8da30037 278 value = &(devc->current_limit);
d7083042 279 break;
16fc7ee2 280 case KAXXXXP_VOLTAGE:
d7083042 281 /* Read voltage from device. */
16fc7ee2 282 ret = korad_kaxxxxp_send_cmd(serial, "VOUT1?");
3f9b48ae 283 value = &(devc->voltage);
d7083042 284 break;
8da30037 285 case KAXXXXP_VOLTAGE_TARGET:
d7083042 286 /* Read set voltage from device. */
16fc7ee2 287 ret = korad_kaxxxxp_send_cmd(serial, "VSET1?");
8da30037 288 value = &(devc->voltage_target);
d7083042 289 break;
16fc7ee2
UH
290 case KAXXXXP_STATUS:
291 case KAXXXXP_OUTPUT:
3f9b48ae
FS
292 case KAXXXXP_OCP:
293 case KAXXXXP_OVP:
d7083042 294 /* Read status from device. */
16fc7ee2 295 ret = korad_kaxxxxp_send_cmd(serial, "STATUS?");
3f9b48ae 296 count = 1;
d7083042
HV
297 break;
298 default:
3f9b48ae 299 sr_err("Don't know how to query %d.", target);
5dfa77b5
GS
300 ret = SR_ERR;
301 }
302 if (ret != SR_OK) {
3f9b48ae 303 g_mutex_unlock(&devc->rw_mutex);
5dfa77b5 304 return ret;
d7083042
HV
305 }
306
307 devc->req_sent_at = g_get_monotonic_time();
d7083042 308
3f9b48ae
FS
309 if ((ret = korad_kaxxxxp_read_chars(serial, count, reply)) < 0) {
310 g_mutex_unlock(&devc->rw_mutex);
d7083042 311 return ret;
3f9b48ae 312 }
d7083042 313
3f9b48ae
FS
314 if (value) {
315 sr_atof_ascii((const char *)&reply, value);
316 sr_dbg("value: %f", *value);
d7083042
HV
317 } else {
318 /* We have status reply. */
3f9b48ae 319 status_byte = reply[0];
2e129b8b
FS
320
321 /* Constant current channel one. */
322 prev_status = devc->cc_mode[0];
323 devc->cc_mode[0] = !(status_byte & (1 << 0));
324 devc->cc_mode_1_changed = devc->cc_mode[0] != prev_status;
325 /* Constant current channel two. */
326 prev_status = devc->cc_mode[1];
327 devc->cc_mode[1] = !(status_byte & (1 << 1));
328 devc->cc_mode_2_changed = devc->cc_mode[1] != prev_status;
329
d7083042 330 /*
2e129b8b 331 * Tracking:
d7083042
HV
332 * status_byte & ((1 << 2) | (1 << 3))
333 * 00 independent 01 series 11 parallel
334 */
2e129b8b
FS
335 devc->beep_enabled = status_byte & (1 << 4);
336
337 /* OCP enabled. */
338 prev_status = devc->ocp_enabled;
339 devc->ocp_enabled = status_byte & (1 << 5);
340 devc->ocp_enabled_changed = devc->ocp_enabled != prev_status;
341
342 /* Output status. */
343 prev_status = devc->output_enabled;
344 devc->output_enabled = status_byte & (1 << 6);
345 devc->output_enabled_changed = devc->output_enabled != prev_status;
346
347 /* OVP enabled, special handling for Velleman LABPS3005 quirk. */
348 if ((devc->model->model_id == VELLEMAN_LABPS3005D && devc->output_enabled) ||
349 devc->model->model_id != VELLEMAN_LABPS3005D) {
350
351 prev_status = devc->ovp_enabled;
352 devc->ovp_enabled = status_byte & (1 << 7);
353 devc->ovp_enabled_changed = devc->ovp_enabled != prev_status;
354 }
355
d7083042 356 sr_dbg("Status: 0x%02x", status_byte);
c40ed60f 357 sr_spew("Status: CH1: constant %s CH2: constant %s. "
253d653d
FS
358 "Tracking would be %s and %s. Output is %s. "
359 "OCP is %s, OVP is %s. Device is %s.",
d7083042
HV
360 (status_byte & (1 << 0)) ? "voltage" : "current",
361 (status_byte & (1 << 1)) ? "voltage" : "current",
c40ed60f 362 (status_byte & (1 << 2)) ? "parallel" : "series",
d7083042 363 (status_byte & (1 << 3)) ? "tracking" : "independent",
c40ed60f 364 (status_byte & (1 << 6)) ? "enabled" : "disabled",
253d653d
FS
365 (status_byte & (1 << 5)) ? "enabled" : "disabled",
366 (status_byte & (1 << 7)) ? "enabled" : "disabled",
367 (status_byte & (1 << 4)) ? "beeping" : "silent");
d7083042 368 }
3f9b48ae 369
8abdf006 370 /* Read the sixth byte from ISET? BUG workaround. */
8da30037 371 if (target == KAXXXXP_CURRENT_LIMIT)
8abdf006 372 serial_read_blocking(serial, &status_byte, 1, 10);
3f9b48ae
FS
373
374 g_mutex_unlock(&devc->rw_mutex);
375
376 return ret;
377}
378
379SR_PRIV int korad_kaxxxxp_get_all_values(struct sr_serial_dev_inst *serial,
380 struct dev_context *devc)
381{
382 int ret, target;
383
384 for (target = KAXXXXP_CURRENT;
385 target <= KAXXXXP_STATUS; target++) {
386 if ((ret = korad_kaxxxxp_get_value(serial, target, devc)) < 0)
387 return ret;
388 }
d7083042
HV
389
390 return ret;
391}
392
393static void next_measurement(struct dev_context *devc)
394{
3f9b48ae 395 switch (devc->acquisition_target) {
16fc7ee2 396 case KAXXXXP_CURRENT:
3f9b48ae 397 devc->acquisition_target = KAXXXXP_VOLTAGE;
d7083042 398 break;
16fc7ee2 399 case KAXXXXP_VOLTAGE:
3f9b48ae 400 devc->acquisition_target = KAXXXXP_STATUS;
d7083042 401 break;
16fc7ee2 402 case KAXXXXP_STATUS:
3f9b48ae 403 devc->acquisition_target = KAXXXXP_CURRENT;
d7083042
HV
404 break;
405 default:
3f9b48ae
FS
406 devc->acquisition_target = KAXXXXP_CURRENT;
407 sr_err("Invalid target for next acquisition.");
d7083042
HV
408 }
409}
410
16fc7ee2 411SR_PRIV int korad_kaxxxxp_receive_data(int fd, int revents, void *cb_data)
e75ee7de 412{
d7083042 413 struct sr_dev_inst *sdi;
e75ee7de 414 struct dev_context *devc;
d7083042
HV
415 struct sr_serial_dev_inst *serial;
416 struct sr_datafeed_packet packet;
2e715341
UH
417 struct sr_datafeed_analog analog;
418 struct sr_analog_encoding encoding;
419 struct sr_analog_meaning meaning;
420 struct sr_analog_spec spec;
23165d7b 421 GSList *l;
e75ee7de
HV
422
423 (void)fd;
a7e48f3c 424 (void)revents;
e75ee7de
HV
425
426 if (!(sdi = cb_data))
427 return TRUE;
428
429 if (!(devc = sdi->priv))
430 return TRUE;
431
d7083042
HV
432 serial = sdi->conn;
433
a7e48f3c
FS
434 /* Get the value. */
435 korad_kaxxxxp_get_value(serial, devc->acquisition_target, devc);
436
437 /* Note: digits/spec_digits will be overridden later. */
438 sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
439
440 /* Send the value forward. */
441 packet.type = SR_DF_ANALOG;
442 packet.payload = &analog;
443 analog.num_samples = 1;
444 l = g_slist_copy(sdi->channels);
445 if (devc->acquisition_target == KAXXXXP_CURRENT) {
446 l = g_slist_remove_link(l, g_slist_nth(l, 0));
447 analog.meaning->channels = l;
448 analog.meaning->mq = SR_MQ_CURRENT;
449 analog.meaning->unit = SR_UNIT_AMPERE;
d1a3f3be 450 analog.meaning->mqflags = SR_MQFLAG_DC;
a7e48f3c
FS
451 analog.encoding->digits = 3;
452 analog.spec->spec_digits = 3;
453 analog.data = &devc->current;
454 sr_session_send(sdi, &packet);
455 } else if (devc->acquisition_target == KAXXXXP_VOLTAGE) {
456 l = g_slist_remove_link(l, g_slist_nth(l, 1));
457 analog.meaning->channels = l;
458 analog.meaning->mq = SR_MQ_VOLTAGE;
459 analog.meaning->unit = SR_UNIT_VOLT;
460 analog.meaning->mqflags = SR_MQFLAG_DC;
461 analog.encoding->digits = 2;
462 analog.spec->spec_digits = 2;
463 analog.data = &devc->voltage;
464 sr_session_send(sdi, &packet);
465 sr_sw_limits_update_samples_read(&devc->limits, 1);
2e129b8b
FS
466 } else if (devc->acquisition_target == KAXXXXP_STATUS) {
467 if (devc->cc_mode_1_changed) {
468 sr_session_send_meta(sdi, SR_CONF_REGULATION,
469 g_variant_new_string((devc->cc_mode[0]) ? "CC" : "CV"));
470 devc->cc_mode_1_changed = FALSE;
471 }
472 if (devc->cc_mode_2_changed) {
473 sr_session_send_meta(sdi, SR_CONF_REGULATION,
474 g_variant_new_string((devc->cc_mode[1]) ? "CC" : "CV"));
475 devc->cc_mode_2_changed = FALSE;
476 }
477 if (devc->output_enabled_changed) {
478 sr_session_send_meta(sdi, SR_CONF_ENABLED,
479 g_variant_new_boolean(devc->output_enabled));
480 devc->output_enabled_changed = FALSE;
481 }
482 if (devc->ocp_enabled_changed) {
483 sr_session_send_meta(sdi, SR_CONF_OVER_CURRENT_PROTECTION_ENABLED,
484 g_variant_new_boolean(devc->ocp_enabled));
485 devc->ocp_enabled_changed = FALSE;
486 }
487 if (devc->ovp_enabled_changed) {
488 sr_session_send_meta(sdi, SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED,
489 g_variant_new_boolean(devc->ovp_enabled));
490 devc->ovp_enabled_changed = FALSE;
491 }
d7083042 492 }
a7e48f3c 493 next_measurement(devc);
d7083042 494
3f9b48ae 495 if (sr_sw_limits_check(&devc->limits))
d2f7c417 496 sr_dev_acquisition_stop(sdi);
e75ee7de
HV
497
498 return TRUE;
499}