]> sigrok.org Git - libsigrok.git/blame - src/hardware/korad-kaxxxxp/protocol.c
scpi-pps: don't break SCPI devices when scanning for HP-IB devices
[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
FS
299 sr_err("Don't know how to query %d.", target);
300 g_mutex_unlock(&devc->rw_mutex);
d7083042
HV
301 return SR_ERR;
302 }
303
304 devc->req_sent_at = g_get_monotonic_time();
d7083042 305
3f9b48ae
FS
306 if ((ret = korad_kaxxxxp_read_chars(serial, count, reply)) < 0) {
307 g_mutex_unlock(&devc->rw_mutex);
d7083042 308 return ret;
3f9b48ae 309 }
d7083042 310
3f9b48ae
FS
311 if (value) {
312 sr_atof_ascii((const char *)&reply, value);
313 sr_dbg("value: %f", *value);
d7083042
HV
314 } else {
315 /* We have status reply. */
3f9b48ae 316 status_byte = reply[0];
2e129b8b
FS
317
318 /* Constant current channel one. */
319 prev_status = devc->cc_mode[0];
320 devc->cc_mode[0] = !(status_byte & (1 << 0));
321 devc->cc_mode_1_changed = devc->cc_mode[0] != prev_status;
322 /* Constant current channel two. */
323 prev_status = devc->cc_mode[1];
324 devc->cc_mode[1] = !(status_byte & (1 << 1));
325 devc->cc_mode_2_changed = devc->cc_mode[1] != prev_status;
326
d7083042 327 /*
2e129b8b 328 * Tracking:
d7083042
HV
329 * status_byte & ((1 << 2) | (1 << 3))
330 * 00 independent 01 series 11 parallel
331 */
2e129b8b
FS
332 devc->beep_enabled = status_byte & (1 << 4);
333
334 /* OCP enabled. */
335 prev_status = devc->ocp_enabled;
336 devc->ocp_enabled = status_byte & (1 << 5);
337 devc->ocp_enabled_changed = devc->ocp_enabled != prev_status;
338
339 /* Output status. */
340 prev_status = devc->output_enabled;
341 devc->output_enabled = status_byte & (1 << 6);
342 devc->output_enabled_changed = devc->output_enabled != prev_status;
343
344 /* OVP enabled, special handling for Velleman LABPS3005 quirk. */
345 if ((devc->model->model_id == VELLEMAN_LABPS3005D && devc->output_enabled) ||
346 devc->model->model_id != VELLEMAN_LABPS3005D) {
347
348 prev_status = devc->ovp_enabled;
349 devc->ovp_enabled = status_byte & (1 << 7);
350 devc->ovp_enabled_changed = devc->ovp_enabled != prev_status;
351 }
352
d7083042 353 sr_dbg("Status: 0x%02x", status_byte);
c40ed60f 354 sr_spew("Status: CH1: constant %s CH2: constant %s. "
253d653d
FS
355 "Tracking would be %s and %s. Output is %s. "
356 "OCP is %s, OVP is %s. Device is %s.",
d7083042
HV
357 (status_byte & (1 << 0)) ? "voltage" : "current",
358 (status_byte & (1 << 1)) ? "voltage" : "current",
c40ed60f 359 (status_byte & (1 << 2)) ? "parallel" : "series",
d7083042 360 (status_byte & (1 << 3)) ? "tracking" : "independent",
c40ed60f 361 (status_byte & (1 << 6)) ? "enabled" : "disabled",
253d653d
FS
362 (status_byte & (1 << 5)) ? "enabled" : "disabled",
363 (status_byte & (1 << 7)) ? "enabled" : "disabled",
364 (status_byte & (1 << 4)) ? "beeping" : "silent");
d7083042 365 }
3f9b48ae 366
8abdf006 367 /* Read the sixth byte from ISET? BUG workaround. */
8da30037 368 if (target == KAXXXXP_CURRENT_LIMIT)
8abdf006 369 serial_read_blocking(serial, &status_byte, 1, 10);
3f9b48ae
FS
370
371 g_mutex_unlock(&devc->rw_mutex);
372
373 return ret;
374}
375
376SR_PRIV int korad_kaxxxxp_get_all_values(struct sr_serial_dev_inst *serial,
377 struct dev_context *devc)
378{
379 int ret, target;
380
381 for (target = KAXXXXP_CURRENT;
382 target <= KAXXXXP_STATUS; target++) {
383 if ((ret = korad_kaxxxxp_get_value(serial, target, devc)) < 0)
384 return ret;
385 }
d7083042
HV
386
387 return ret;
388}
389
390static void next_measurement(struct dev_context *devc)
391{
3f9b48ae 392 switch (devc->acquisition_target) {
16fc7ee2 393 case KAXXXXP_CURRENT:
3f9b48ae 394 devc->acquisition_target = KAXXXXP_VOLTAGE;
d7083042 395 break;
16fc7ee2 396 case KAXXXXP_VOLTAGE:
3f9b48ae 397 devc->acquisition_target = KAXXXXP_STATUS;
d7083042 398 break;
16fc7ee2 399 case KAXXXXP_STATUS:
3f9b48ae 400 devc->acquisition_target = KAXXXXP_CURRENT;
d7083042
HV
401 break;
402 default:
3f9b48ae
FS
403 devc->acquisition_target = KAXXXXP_CURRENT;
404 sr_err("Invalid target for next acquisition.");
d7083042
HV
405 }
406}
407
16fc7ee2 408SR_PRIV int korad_kaxxxxp_receive_data(int fd, int revents, void *cb_data)
e75ee7de 409{
d7083042 410 struct sr_dev_inst *sdi;
e75ee7de 411 struct dev_context *devc;
d7083042
HV
412 struct sr_serial_dev_inst *serial;
413 struct sr_datafeed_packet packet;
2e715341
UH
414 struct sr_datafeed_analog analog;
415 struct sr_analog_encoding encoding;
416 struct sr_analog_meaning meaning;
417 struct sr_analog_spec spec;
23165d7b 418 GSList *l;
e75ee7de
HV
419
420 (void)fd;
a7e48f3c 421 (void)revents;
e75ee7de
HV
422
423 if (!(sdi = cb_data))
424 return TRUE;
425
426 if (!(devc = sdi->priv))
427 return TRUE;
428
d7083042
HV
429 serial = sdi->conn;
430
a7e48f3c
FS
431 /* Get the value. */
432 korad_kaxxxxp_get_value(serial, devc->acquisition_target, devc);
433
434 /* Note: digits/spec_digits will be overridden later. */
435 sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
436
437 /* Send the value forward. */
438 packet.type = SR_DF_ANALOG;
439 packet.payload = &analog;
440 analog.num_samples = 1;
441 l = g_slist_copy(sdi->channels);
442 if (devc->acquisition_target == KAXXXXP_CURRENT) {
443 l = g_slist_remove_link(l, g_slist_nth(l, 0));
444 analog.meaning->channels = l;
445 analog.meaning->mq = SR_MQ_CURRENT;
446 analog.meaning->unit = SR_UNIT_AMPERE;
d1a3f3be 447 analog.meaning->mqflags = SR_MQFLAG_DC;
a7e48f3c
FS
448 analog.encoding->digits = 3;
449 analog.spec->spec_digits = 3;
450 analog.data = &devc->current;
451 sr_session_send(sdi, &packet);
452 } else if (devc->acquisition_target == KAXXXXP_VOLTAGE) {
453 l = g_slist_remove_link(l, g_slist_nth(l, 1));
454 analog.meaning->channels = l;
455 analog.meaning->mq = SR_MQ_VOLTAGE;
456 analog.meaning->unit = SR_UNIT_VOLT;
457 analog.meaning->mqflags = SR_MQFLAG_DC;
458 analog.encoding->digits = 2;
459 analog.spec->spec_digits = 2;
460 analog.data = &devc->voltage;
461 sr_session_send(sdi, &packet);
462 sr_sw_limits_update_samples_read(&devc->limits, 1);
2e129b8b
FS
463 } else if (devc->acquisition_target == KAXXXXP_STATUS) {
464 if (devc->cc_mode_1_changed) {
465 sr_session_send_meta(sdi, SR_CONF_REGULATION,
466 g_variant_new_string((devc->cc_mode[0]) ? "CC" : "CV"));
467 devc->cc_mode_1_changed = FALSE;
468 }
469 if (devc->cc_mode_2_changed) {
470 sr_session_send_meta(sdi, SR_CONF_REGULATION,
471 g_variant_new_string((devc->cc_mode[1]) ? "CC" : "CV"));
472 devc->cc_mode_2_changed = FALSE;
473 }
474 if (devc->output_enabled_changed) {
475 sr_session_send_meta(sdi, SR_CONF_ENABLED,
476 g_variant_new_boolean(devc->output_enabled));
477 devc->output_enabled_changed = FALSE;
478 }
479 if (devc->ocp_enabled_changed) {
480 sr_session_send_meta(sdi, SR_CONF_OVER_CURRENT_PROTECTION_ENABLED,
481 g_variant_new_boolean(devc->ocp_enabled));
482 devc->ocp_enabled_changed = FALSE;
483 }
484 if (devc->ovp_enabled_changed) {
485 sr_session_send_meta(sdi, SR_CONF_OVER_VOLTAGE_PROTECTION_ENABLED,
486 g_variant_new_boolean(devc->ovp_enabled));
487 devc->ovp_enabled_changed = FALSE;
488 }
d7083042 489 }
a7e48f3c 490 next_measurement(devc);
d7083042 491
3f9b48ae 492 if (sr_sw_limits_check(&devc->limits))
d2f7c417 493 sr_dev_acquisition_stop(sdi);
e75ee7de
HV
494
495 return TRUE;
496}