]> sigrok.org Git - libsigrok.git/blame - src/hardware/hantek-6xxx/api.c
Add a new sr_log_callback_get() API call.
[libsigrok.git] / src / hardware / hantek-6xxx / api.c
CommitLineData
6c6bc80a
C
1/*
2 * This file is part of the libsigrok project.
3 *
f2a66a8e 4 * Copyright (C) 2015 Christer Ekholm <christerekholm@gmail.com>
6c6bc80a
C
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 <config.h>
1e1fdbc9 21#include <math.h>
6c6bc80a
C
22#include "protocol.h"
23
f2a66a8e
C
24/* Max time in ms before we want to check on USB events */
25#define TICK 200
26
27#define RANGE(ch) (((float)vdivs[devc->voltage[ch]][0] / vdivs[devc->voltage[ch]][1]) * VDIV_MULTIPLIER)
28
29static const uint32_t scanopts[] = {
30 SR_CONF_CONN,
31};
32
33static const uint32_t drvopts[] = {
34 SR_CONF_OSCILLOSCOPE,
35};
36
37static const uint32_t devopts[] = {
38 SR_CONF_CONN | SR_CONF_GET,
f2a66a8e
C
39 SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
40 SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
86621306
UH
41 SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
42 SR_CONF_NUM_VDIV | SR_CONF_GET,
f2a66a8e
C
43};
44
45static const uint32_t devopts_cg[] = {
46 SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
cc5ebc8a 47 SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
f2a66a8e
C
48};
49
50static const char *channel_names[] = {
51 "CH1", "CH2",
52};
53
5eb4ba29 54static const char *dc_coupling[] = {
64f628bf 55 "DC",
5eb4ba29
BL
56};
57
58static const char *acdc_coupling[] = {
cc5ebc8a
BL
59 "AC", "DC",
60};
61
f2a66a8e
C
62static const struct hantek_6xxx_profile dev_profiles[] = {
63 {
459324ac 64 0x04b4, 0x6022, 0x1d50, 0x608e, 0x0001,
7dc72c37 65 "Hantek", "6022BE", "fx2lafw-hantek-6022be.fw",
53012da6 66 ARRAY_AND_SIZE(dc_coupling), FALSE,
f2a66a8e 67 },
692c3b22 68 {
459324ac 69 0x8102, 0x8102, 0x1d50, 0x608e, 0x0002,
7dc72c37 70 "Sainsmart", "DDS120", "fx2lafw-sainsmart-dds120.fw",
53012da6 71 ARRAY_AND_SIZE(acdc_coupling), TRUE,
692c3b22 72 },
759f2ef7
STA
73 {
74 0x04b4, 0x602a, 0x1d50, 0x608e, 0x0003,
75 "Hantek", "6022BL", "fx2lafw-hantek-6022bl.fw",
53012da6 76 ARRAY_AND_SIZE(dc_coupling), FALSE,
759f2ef7 77 },
f2a66a8e
C
78 ALL_ZERO
79};
80
81static const uint64_t samplerates[] = {
82 SAMPLERATE_VALUES
83};
84
85static const uint64_t vdivs[][2] = {
86 VDIV_VALUES
87};
88
f2a66a8e
C
89static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount);
90
15a5bfe4 91static struct sr_dev_inst *hantek_6xxx_dev_new(const struct hantek_6xxx_profile *prof)
f2a66a8e
C
92{
93 struct sr_dev_inst *sdi;
94 struct sr_channel *ch;
95 struct sr_channel_group *cg;
f2a66a8e
C
96 struct dev_context *devc;
97 unsigned int i;
98
99 sdi = g_malloc0(sizeof(struct sr_dev_inst));
100 sdi->status = SR_ST_INITIALIZING;
101 sdi->vendor = g_strdup(prof->vendor);
102 sdi->model = g_strdup(prof->model);
f2a66a8e
C
103
104 for (i = 0; i < ARRAY_SIZE(channel_names); i++) {
105 ch = sr_channel_new(sdi, i, SR_CHANNEL_ANALOG, TRUE, channel_names[i]);
106 cg = g_malloc0(sizeof(struct sr_channel_group));
107 cg->name = g_strdup(channel_names[i]);
108 cg->channels = g_slist_append(cg->channels, ch);
109 sdi->channel_groups = g_slist_append(sdi->channel_groups, cg);
110 }
111
112 devc = g_malloc0(sizeof(struct dev_context));
113
114 for (i = 0; i < NUM_CHANNELS; i++) {
115 devc->ch_enabled[i] = TRUE;
116 devc->voltage[i] = DEFAULT_VOLTAGE;
cc5ebc8a 117 devc->coupling[i] = DEFAULT_COUPLING;
f2a66a8e 118 }
5eb4ba29
BL
119 devc->coupling_vals = prof->coupling_vals;
120 devc->coupling_tab_size = prof->coupling_tab_size;
364b09c2 121 devc->has_coupling = prof->has_coupling;
f2a66a8e 122
f2a66a8e
C
123 devc->profile = prof;
124 devc->dev_state = IDLE;
125 devc->samplerate = DEFAULT_SAMPLERATE;
126
127 sdi->priv = devc;
f2a66a8e
C
128
129 return sdi;
130}
131
132static int configure_channels(const struct sr_dev_inst *sdi)
133{
134 struct dev_context *devc;
135 const GSList *l;
136 int p;
137 struct sr_channel *ch;
138 devc = sdi->priv;
139
140 g_slist_free(devc->enabled_channels);
141 devc->enabled_channels = NULL;
142 memset(devc->ch_enabled, 0, sizeof(devc->ch_enabled));
143
144 for (l = sdi->channels, p = 0; l; l = l->next, p++) {
145 ch = l->data;
146 if (p < NUM_CHANNELS) {
147 devc->ch_enabled[p] = ch->enabled;
148 devc->enabled_channels = g_slist_append(devc->enabled_channels, ch);
149 }
150 }
151
152 return SR_OK;
153}
154
3553451f 155static void clear_helper(struct dev_context *devc)
f2a66a8e 156{
f2a66a8e
C
157 g_slist_free(devc->enabled_channels);
158}
159
160static int dev_clear(const struct sr_dev_driver *di)
161{
3553451f 162 return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
f2a66a8e
C
163}
164
6c6bc80a
C
165static GSList *scan(struct sr_dev_driver *di, GSList *options)
166{
167 struct drv_context *drvc;
f2a66a8e
C
168 struct dev_context *devc;
169 struct sr_dev_inst *sdi;
170 struct sr_usb_dev_inst *usb;
171 struct sr_config *src;
172 const struct hantek_6xxx_profile *prof;
173 GSList *l, *devices, *conn_devices;
174 struct libusb_device_descriptor des;
175 libusb_device **devlist;
176 int i, j;
177 const char *conn;
178 char connection_id[64];
6c6bc80a 179
6c6bc80a 180 drvc = di->context;
6c6bc80a 181
f2a66a8e
C
182 devices = 0;
183
184 conn = NULL;
185 for (l = options; l; l = l->next) {
186 src = l->data;
187 if (src->key == SR_CONF_CONN) {
188 conn = g_variant_get_string(src->data, NULL);
189 break;
190 }
191 }
192 if (conn)
193 conn_devices = sr_usb_find(drvc->sr_ctx->libusb_ctx, conn);
194 else
195 conn_devices = NULL;
196
197 /* Find all Hantek 60xx devices and upload firmware to all of them. */
198 libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist);
199 for (i = 0; devlist[i]; i++) {
200 if (conn) {
201 usb = NULL;
202 for (l = conn_devices; l; l = l->next) {
203 usb = l->data;
204 if (usb->bus == libusb_get_bus_number(devlist[i])
205 && usb->address == libusb_get_device_address(devlist[i]))
206 break;
207 }
208 if (!l)
209 /* This device matched none of the ones that
210 * matched the conn specification. */
211 continue;
212 }
213
c940b7a3 214 libusb_get_device_descriptor(devlist[i], &des);
f2a66a8e 215
6c1a76d1
RT
216 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
217 continue;
f2a66a8e
C
218
219 prof = NULL;
0d8a3063 220 for (j = 0; dev_profiles[j].orig_vid; j++) {
f2a66a8e
C
221 if (des.idVendor == dev_profiles[j].orig_vid
222 && des.idProduct == dev_profiles[j].orig_pid) {
223 /* Device matches the pre-firmware profile. */
224 prof = &dev_profiles[j];
225 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
15a5bfe4 226 sdi = hantek_6xxx_dev_new(prof);
f2a66a8e
C
227 sdi->connection_id = g_strdup(connection_id);
228 devices = g_slist_append(devices, sdi);
229 devc = sdi->priv;
230 if (ezusb_upload_firmware(drvc->sr_ctx, devlist[i],
231 USB_CONFIGURATION, prof->firmware) == SR_OK)
232 /* Remember when the firmware on this device was updated. */
233 devc->fw_updated = g_get_monotonic_time();
234 else
235 sr_err("Firmware upload failed.");
236 /* Dummy USB address of 0xff will get overwritten later. */
237 sdi->conn = sr_usb_dev_inst_new(
238 libusb_get_bus_number(devlist[i]), 0xff, NULL);
239 break;
240 } else if (des.idVendor == dev_profiles[j].fw_vid
459324ac
UH
241 && des.idProduct == dev_profiles[j].fw_pid
242 && des.bcdDevice == dev_profiles[j].fw_prod_ver) {
f2a66a8e
C
243 /* Device matches the post-firmware profile. */
244 prof = &dev_profiles[j];
245 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
15a5bfe4 246 sdi = hantek_6xxx_dev_new(prof);
f2a66a8e
C
247 sdi->connection_id = g_strdup(connection_id);
248 sdi->status = SR_ST_INACTIVE;
249 devices = g_slist_append(devices, sdi);
250 sdi->inst_type = SR_INST_USB;
251 sdi->conn = sr_usb_dev_inst_new(
252 libusb_get_bus_number(devlist[i]),
253 libusb_get_device_address(devlist[i]), NULL);
254 break;
255 }
256 }
257 if (!prof)
258 /* Not a supported VID/PID. */
259 continue;
260 }
261 libusb_free_device_list(devlist, 1);
6c6bc80a 262
15a5bfe4 263 return std_scan_complete(di, devices);
6c6bc80a
C
264}
265
6c6bc80a
C
266static int dev_open(struct sr_dev_inst *sdi)
267{
f2a66a8e
C
268 struct dev_context *devc;
269 struct sr_usb_dev_inst *usb;
270 int64_t timediff_us, timediff_ms;
271 int err;
272
273 devc = sdi->priv;
274 usb = sdi->conn;
275
276 /*
277 * If the firmware was recently uploaded, wait up to MAX_RENUM_DELAY_MS
278 * for the FX2 to renumerate.
279 */
280 err = SR_ERR;
281 if (devc->fw_updated > 0) {
282 sr_info("Waiting for device to reset.");
283 /* Takes >= 300ms for the FX2 to be gone from the USB bus. */
284 g_usleep(300 * 1000);
285 timediff_ms = 0;
286 while (timediff_ms < MAX_RENUM_DELAY_MS) {
287 if ((err = hantek_6xxx_open(sdi)) == SR_OK)
288 break;
289 g_usleep(100 * 1000);
290 timediff_us = g_get_monotonic_time() - devc->fw_updated;
291 timediff_ms = timediff_us / 1000;
292 sr_spew("Waited %" PRIi64 " ms.", timediff_ms);
293 }
294 if (timediff_ms < MAX_RENUM_DELAY_MS)
295 sr_info("Device came back after %"PRIu64" ms.", timediff_ms);
296 } else {
297 err = hantek_6xxx_open(sdi);
298 }
6c6bc80a 299
f2a66a8e
C
300 if (err != SR_OK) {
301 sr_err("Unable to open device.");
302 return SR_ERR;
303 }
6c6bc80a 304
f2a66a8e
C
305 err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
306 if (err != 0) {
307 sr_err("Unable to claim interface: %s.",
d9251a2c 308 libusb_error_name(err));
f2a66a8e
C
309 return SR_ERR;
310 }
6c6bc80a
C
311
312 return SR_OK;
313}
314
315static int dev_close(struct sr_dev_inst *sdi)
316{
f2a66a8e 317 hantek_6xxx_close(sdi);
6c6bc80a
C
318
319 return SR_OK;
320}
321
dd7a72ea
UH
322static int config_get(uint32_t key, GVariant **data,
323 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6c6bc80a 324{
f2a66a8e
C
325 struct dev_context *devc;
326 struct sr_usb_dev_inst *usb;
f2a66a8e
C
327 const uint64_t *vdiv;
328 int ch_idx;
6c6bc80a 329
6c6bc80a 330 switch (key) {
f2a66a8e
C
331 case SR_CONF_NUM_VDIV:
332 *data = g_variant_new_int32(ARRAY_SIZE(vdivs));
333 break;
6c6bc80a
C
334 }
335
f2a66a8e
C
336 if (!sdi)
337 return SR_ERR_ARG;
338
339 devc = sdi->priv;
340 if (!cg) {
341 switch (key) {
342 case SR_CONF_SAMPLERATE:
343 *data = g_variant_new_uint64(devc->samplerate);
344 break;
345 case SR_CONF_LIMIT_MSEC:
346 *data = g_variant_new_uint64(devc->limit_msec);
347 break;
348 case SR_CONF_LIMIT_SAMPLES:
349 *data = g_variant_new_uint64(devc->limit_samples);
350 break;
351 case SR_CONF_CONN:
352 if (!sdi->conn)
353 return SR_ERR_ARG;
354 usb = sdi->conn;
355 if (usb->address == 255)
356 /* Device still needs to re-enumerate after firmware
357 * upload, so we don't know its (future) address. */
358 return SR_ERR;
95c1fe62 359 *data = g_variant_new_printf("%d.%d", usb->bus, usb->address);
f2a66a8e
C
360 break;
361 default:
362 return SR_ERR_NA;
363 }
364 } else {
365 if (sdi->channel_groups->data == cg)
366 ch_idx = 0;
367 else if (sdi->channel_groups->next->data == cg)
368 ch_idx = 1;
369 else
370 return SR_ERR_ARG;
371 switch (key) {
372 case SR_CONF_VDIV:
373 vdiv = vdivs[devc->voltage[ch_idx]];
374 *data = g_variant_new("(tt)", vdiv[0], vdiv[1]);
375 break;
cc5ebc8a 376 case SR_CONF_COUPLING:
64f628bf
UH
377 *data = g_variant_new_string((devc->coupling[ch_idx] \
378 == COUPLING_DC) ? "DC" : "AC");
cc5ebc8a 379 break;
f2a66a8e
C
380 }
381 }
382
383 return SR_OK;
6c6bc80a
C
384}
385
dd7a72ea
UH
386static int config_set(uint32_t key, GVariant *data,
387 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6c6bc80a 388{
f2a66a8e 389 struct dev_context *devc;
697fb6dd 390 int ch_idx, idx;
6c6bc80a 391
f2a66a8e
C
392 devc = sdi->priv;
393 if (!cg) {
394 switch (key) {
395 case SR_CONF_SAMPLERATE:
396 devc->samplerate = g_variant_get_uint64(data);
397 hantek_6xxx_update_samplerate(sdi);
398 break;
399 case SR_CONF_LIMIT_MSEC:
400 devc->limit_msec = g_variant_get_uint64(data);
401 break;
402 case SR_CONF_LIMIT_SAMPLES:
403 devc->limit_samples = g_variant_get_uint64(data);
404 break;
405 default:
a9010323 406 return SR_ERR_NA;
f2a66a8e
C
407 }
408 } else {
409 if (sdi->channel_groups->data == cg)
410 ch_idx = 0;
411 else if (sdi->channel_groups->next->data == cg)
412 ch_idx = 1;
413 else
414 return SR_ERR_ARG;
415 switch (key) {
416 case SR_CONF_VDIV:
697fb6dd 417 if ((idx = std_u64_tuple_idx(data, ARRAY_AND_SIZE(vdivs))) < 0)
a9010323 418 return SR_ERR_ARG;
697fb6dd
UH
419 devc->voltage[ch_idx] = idx;
420 hantek_6xxx_update_vdiv(sdi);
f2a66a8e 421 break;
cc5ebc8a 422 case SR_CONF_COUPLING:
697fb6dd
UH
423 if ((idx = std_str_idx(data, devc->coupling_vals,
424 devc->coupling_tab_size)) < 0)
a9010323 425 return SR_ERR_ARG;
697fb6dd 426 devc->coupling[ch_idx] = idx;
cc5ebc8a 427 break;
f2a66a8e 428 default:
a9010323 429 return SR_ERR_NA;
f2a66a8e 430 }
6c6bc80a
C
431 }
432
a9010323 433 return SR_OK;
6c6bc80a
C
434}
435
dd7a72ea
UH
436static int config_list(uint32_t key, GVariant **data,
437 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
6c6bc80a 438{
e66d1892 439 struct dev_context *devc;
6c6bc80a 440
e66d1892 441 devc = (sdi) ? sdi->priv : NULL;
7f46b27e 442
f2a66a8e
C
443 if (!cg) {
444 switch (key) {
e66d1892 445 case SR_CONF_SCAN_OPTIONS:
f2a66a8e 446 case SR_CONF_DEVICE_OPTIONS:
e66d1892 447 return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
f2a66a8e 448 case SR_CONF_SAMPLERATE:
53012da6 449 *data = std_gvar_samplerates(ARRAY_AND_SIZE(samplerates));
f2a66a8e
C
450 break;
451 default:
452 return SR_ERR_NA;
453 }
454 } else {
455 switch (key) {
456 case SR_CONF_DEVICE_OPTIONS:
53012da6 457 *data = std_gvar_array_u32(ARRAY_AND_SIZE(devopts_cg));
f2a66a8e 458 break;
cc5ebc8a 459 case SR_CONF_COUPLING:
e93ca8a4
GS
460 if (!devc)
461 return SR_ERR_ARG;
5eb4ba29 462 *data = g_variant_new_strv(devc->coupling_vals, devc->coupling_tab_size);
cc5ebc8a 463 break;
f2a66a8e 464 case SR_CONF_VDIV:
58ffcf97 465 *data = std_gvar_tuple_array(ARRAY_AND_SIZE(vdivs));
f2a66a8e
C
466 break;
467 default:
468 return SR_ERR_NA;
469 }
470 }
6c6bc80a 471
f2a66a8e
C
472 return SR_OK;
473}
474
475/* Minimise data amount for limit_samples and limit_msec limits. */
476static uint32_t data_amount(const struct sr_dev_inst *sdi)
477{
478 struct dev_context *devc = sdi->priv;
af7f8824 479 uint32_t data_left, data_left_2, i;
f2a66a8e
C
480 int32_t time_left;
481
482 if (devc->limit_msec) {
483 time_left = devc->limit_msec - (g_get_monotonic_time() - devc->aq_started) / 1000;
484 data_left = devc->samplerate * MAX(time_left, 0) * NUM_CHANNELS / 1000;
485 } else if (devc->limit_samples) {
486 data_left = (devc->limit_samples - devc->samp_received) * NUM_CHANNELS;
487 } else {
488 data_left = devc->samplerate * NUM_CHANNELS;
489 }
490
af7f8824
UH
491 /* Round up to nearest power of two. */
492 for (i = MIN_PACKET_SIZE; i < data_left; i *= 2)
493 ;
494 data_left_2 = i;
f2a66a8e 495
af7f8824 496 sr_spew("data_amount: %u (rounded to power of 2: %u)", data_left, data_left_2);
f2a66a8e 497
af7f8824 498 return data_left_2;
f2a66a8e
C
499}
500
501static void send_chunk(struct sr_dev_inst *sdi, unsigned char *buf,
502 int num_samples)
503{
504 struct sr_datafeed_packet packet;
2938c9d1
UH
505 struct sr_datafeed_analog analog;
506 struct sr_analog_encoding encoding;
507 struct sr_analog_meaning meaning;
508 struct sr_analog_spec spec;
f2a66a8e 509 struct dev_context *devc = sdi->priv;
1e1fdbc9 510 GSList *channels = devc->enabled_channels;
f2a66a8e 511
1e1fdbc9
AJ
512 const float ch_bit[] = { RANGE(0) / 255, RANGE(1) / 255 };
513 const float ch_center[] = { RANGE(0) / 2, RANGE(1) / 2 };
f2a66a8e 514
2938c9d1
UH
515 sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
516
2938c9d1 517 packet.type = SR_DF_ANALOG;
f2a66a8e
C
518 packet.payload = &analog;
519
f2a66a8e 520 analog.num_samples = num_samples;
2938c9d1
UH
521 analog.meaning->mq = SR_MQ_VOLTAGE;
522 analog.meaning->unit = SR_UNIT_VOLT;
523 analog.meaning->mqflags = 0;
f2a66a8e 524
1e1fdbc9 525 analog.data = g_try_malloc(num_samples * sizeof(float));
f2a66a8e
C
526 if (!analog.data) {
527 sr_err("Analog data buffer malloc failed.");
528 devc->dev_state = STOPPING;
529 return;
530 }
531
b3fd0993 532 for (int ch = 0; ch < NUM_CHANNELS; ch++) {
1e1fdbc9
AJ
533 if (!devc->ch_enabled[ch])
534 continue;
f2a66a8e 535
1e1fdbc9
AJ
536 float vdivlog = log10f(ch_bit[ch]);
537 int digits = -(int)vdivlog + (vdivlog < 0.0);
538 analog.encoding->digits = digits;
539 analog.spec->spec_digits = digits;
540 analog.meaning->channels = g_slist_append(NULL, channels->data);
541
542 for (int i = 0; i < num_samples; i++) {
543 /*
544 * The device always sends data for both channels. If a channel
545 * is disabled, it contains a copy of the enabled channel's
546 * data. However, we only send the requested channels to
547 * the bus.
548 *
549 * Voltage values are encoded as a value 0-255, where the
550 * value is a point in the range represented by the vdiv
551 * setting. There are 10 vertical divs, so e.g. 500mV/div
552 * represents 5V peak-to-peak where 0 = -2.5V and 255 = +2.5V.
553 */
554 ((float *)analog.data)[i] = ch_bit[ch] * *(buf + i * 2 + ch) - ch_center[ch];
555 }
556
557 sr_session_send(sdi, &packet);
558 g_slist_free(analog.meaning->channels);
559
560 channels = channels->next;
561 }
f2a66a8e
C
562 g_free(analog.data);
563}
564
f2a66a8e
C
565/*
566 * Called by libusb (as triggered by handle_event()) when a transfer comes in.
567 * Only channel data comes in asynchronously, and all transfers for this are
568 * queued up beforehand, so this just needs to chuck the incoming data onto
569 * the libsigrok session bus.
570 */
571static void LIBUSB_CALL receive_transfer(struct libusb_transfer *transfer)
572{
573 struct sr_dev_inst *sdi;
574 struct dev_context *devc;
575
576 sdi = transfer->user_data;
577 devc = sdi->priv;
578
579 if (devc->dev_state == FLUSH) {
5954e716
BL
580 g_free(transfer->buffer);
581 libusb_free_transfer(transfer);
f2a66a8e
C
582 devc->dev_state = CAPTURE;
583 devc->aq_started = g_get_monotonic_time();
584 read_channel(sdi, data_amount(sdi));
585 return;
586 }
587
588 if (devc->dev_state != CAPTURE)
589 return;
590
f2a66a8e
C
591 sr_spew("receive_transfer(): calculated samplerate == %" PRIu64 "ks/s",
592 (uint64_t)(transfer->actual_length * 1000 /
593 (g_get_monotonic_time() - devc->read_start_ts + 1) /
594 NUM_CHANNELS));
595
596 sr_spew("receive_transfer(): status %s received %d bytes.",
597 libusb_error_name(transfer->status), transfer->actual_length);
598
599 if (transfer->actual_length == 0)
600 /* Nothing to send to the bus. */
601 return;
602
4299fcc0
SA
603 unsigned samples_received = transfer->actual_length / NUM_CHANNELS;
604 send_chunk(sdi, transfer->buffer, samples_received);
605 devc->samp_received += samples_received;
606
607 g_free(transfer->buffer);
608 libusb_free_transfer(transfer);
609
f2a66a8e
C
610 if (devc->limit_samples && devc->samp_received >= devc->limit_samples) {
611 sr_info("Requested number of samples reached, stopping. %"
612 PRIu64 " <= %" PRIu64, devc->limit_samples,
613 devc->samp_received);
d2f7c417 614 sr_dev_acquisition_stop(sdi);
f2a66a8e
C
615 } else if (devc->limit_msec && (g_get_monotonic_time() -
616 devc->aq_started) / 1000 >= devc->limit_msec) {
617 sr_info("Requested time limit reached, stopping. %d <= %d",
618 (uint32_t)devc->limit_msec,
619 (uint32_t)(g_get_monotonic_time() - devc->aq_started) / 1000);
d2f7c417 620 sr_dev_acquisition_stop(sdi);
f2a66a8e
C
621 } else {
622 read_channel(sdi, data_amount(sdi));
623 }
624}
625
626static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount)
627{
628 int ret;
629 struct dev_context *devc;
630
631 devc = sdi->priv;
632
633 amount = MIN(amount, MAX_PACKET_SIZE);
634 ret = hantek_6xxx_get_channeldata(sdi, receive_transfer, amount);
635 devc->read_start_ts = g_get_monotonic_time();
f2a66a8e 636
6c6bc80a
C
637 return ret;
638}
639
f2a66a8e 640static int handle_event(int fd, int revents, void *cb_data)
6c6bc80a 641{
f2a66a8e 642 const struct sr_dev_inst *sdi;
f2a66a8e
C
643 struct timeval tv;
644 struct sr_dev_driver *di;
645 struct dev_context *devc;
646 struct drv_context *drvc;
647
648 (void)fd;
649 (void)revents;
650
651 sdi = cb_data;
652 di = sdi->driver;
653 drvc = di->context;
654 devc = sdi->priv;
655
656 /* Always handle pending libusb events. */
657 tv.tv_sec = tv.tv_usec = 0;
658 libusb_handle_events_timeout(drvc->sr_ctx->libusb_ctx, &tv);
659
660 if (devc->dev_state == STOPPING) {
661 /* We've been told to wind up the acquisition. */
662 sr_dbg("Stopping acquisition.");
663
664 hantek_6xxx_stop_data_collecting(sdi);
665 /*
666 * TODO: Doesn't really cancel pending transfers so they might
667 * come in after SR_DF_END is sent.
668 */
669 usb_source_remove(sdi->session, drvc->sr_ctx);
670
bee2b016 671 std_session_send_df_end(sdi);
f2a66a8e
C
672
673 devc->dev_state = IDLE;
674
675 return TRUE;
676 }
677
678 return TRUE;
679}
680
695dc859 681static int dev_acquisition_start(const struct sr_dev_inst *sdi)
f2a66a8e
C
682{
683 struct dev_context *devc;
684 struct sr_dev_driver *di = sdi->driver;
685 struct drv_context *drvc = di->context;
6c6bc80a 686
f2a66a8e 687 devc = sdi->priv;
f2a66a8e
C
688
689 if (configure_channels(sdi) != SR_OK) {
690 sr_err("Failed to configure channels.");
691 return SR_ERR;
692 }
693
694 if (hantek_6xxx_init(sdi) != SR_OK)
695 return SR_ERR;
696
bee2b016 697 std_session_send_df_header(sdi);
f2a66a8e
C
698
699 devc->samp_received = 0;
700 devc->dev_state = FLUSH;
701
702 usb_source_add(sdi->session, drvc->sr_ctx, TICK,
703 handle_event, (void *)sdi);
704
705 hantek_6xxx_start_data_collecting(sdi);
706
707 read_channel(sdi, FLUSH_PACKET_SIZE);
6c6bc80a
C
708
709 return SR_OK;
710}
711
695dc859 712static int dev_acquisition_stop(struct sr_dev_inst *sdi)
6c6bc80a 713{
f2a66a8e
C
714 struct dev_context *devc;
715
f2a66a8e
C
716 devc = sdi->priv;
717 devc->dev_state = STOPPING;
6c6bc80a 718
6c6bc80a
C
719 return SR_OK;
720}
721
dd5c48a6 722static struct sr_dev_driver hantek_6xxx_driver_info = {
6c6bc80a
C
723 .name = "hantek-6xxx",
724 .longname = "Hantek 6xxx",
725 .api_version = 1,
c2fdcc25 726 .init = std_init,
700d6b64 727 .cleanup = std_cleanup,
6c6bc80a 728 .scan = scan,
c01bf34c 729 .dev_list = std_dev_list,
6c6bc80a
C
730 .dev_clear = dev_clear,
731 .config_get = config_get,
732 .config_set = config_set,
733 .config_list = config_list,
734 .dev_open = dev_open,
735 .dev_close = dev_close,
736 .dev_acquisition_start = dev_acquisition_start,
737 .dev_acquisition_stop = dev_acquisition_stop,
738 .context = NULL,
739};
dd5c48a6 740SR_REGISTER_DEV_DRIVER(hantek_6xxx_driver_info);