]> sigrok.org Git - libsigrok.git/blob - src/hardware/hantek-6xxx/api.c
configure.ac: Emit a warning if the C++ bindings are not being built.
[libsigrok.git] / src / hardware / hantek-6xxx / api.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2015 Christer Ekholm <christerekholm@gmail.com>
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>
21 #include <math.h>
22 #include "protocol.h"
23
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
29 static const uint32_t scanopts[] = {
30         SR_CONF_CONN,
31 };
32
33 static const uint32_t drvopts[] = {
34         SR_CONF_OSCILLOSCOPE,
35 };
36
37 static const uint32_t devopts[] = {
38         SR_CONF_CONN | SR_CONF_GET,
39         SR_CONF_LIMIT_SAMPLES | SR_CONF_GET | SR_CONF_SET,
40         SR_CONF_LIMIT_MSEC | SR_CONF_GET | SR_CONF_SET,
41         SR_CONF_SAMPLERATE | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
42         SR_CONF_NUM_VDIV | SR_CONF_GET,
43 };
44
45 static const uint32_t devopts_cg[] = {
46         SR_CONF_VDIV | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
47         SR_CONF_COUPLING | SR_CONF_GET | SR_CONF_SET | SR_CONF_LIST,
48 };
49
50 static const char *channel_names[] = {
51         "CH1", "CH2",
52 };
53
54 static const char *dc_coupling[] = {
55         "DC",
56 };
57
58 static const char *acdc_coupling[] = {
59         "AC", "DC",
60 };
61
62 static const struct hantek_6xxx_profile dev_profiles[] = {
63         {
64                 0x04b4, 0x6022, 0x1d50, 0x608e, 0x0001,
65                 "Hantek", "6022BE", "fx2lafw-hantek-6022be.fw",
66                 ARRAY_AND_SIZE(dc_coupling), FALSE,
67         },
68         {
69                 0x8102, 0x8102, 0x1d50, 0x608e, 0x0002,
70                 "Sainsmart", "DDS120", "fx2lafw-sainsmart-dds120.fw",
71                 ARRAY_AND_SIZE(acdc_coupling), TRUE,
72         },
73         {
74                 0x04b4, 0x602a, 0x1d50, 0x608e, 0x0003,
75                 "Hantek", "6022BL", "fx2lafw-hantek-6022bl.fw",
76                 ARRAY_AND_SIZE(dc_coupling), FALSE,
77         },
78         ALL_ZERO
79 };
80
81 static const uint64_t samplerates[] = {
82         SAMPLERATE_VALUES
83 };
84
85 static const uint64_t vdivs[][2] = {
86         VDIV_VALUES
87 };
88
89 static int read_channel(const struct sr_dev_inst *sdi, uint32_t amount);
90
91 static struct sr_dev_inst *hantek_6xxx_dev_new(const struct hantek_6xxx_profile *prof)
92 {
93         struct sr_dev_inst *sdi;
94         struct sr_channel *ch;
95         struct sr_channel_group *cg;
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);
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;
117                 devc->coupling[i] = DEFAULT_COUPLING;
118         }
119         devc->coupling_vals = prof->coupling_vals;
120         devc->coupling_tab_size = prof->coupling_tab_size;
121         devc->has_coupling = prof->has_coupling;
122
123         devc->profile = prof;
124         devc->dev_state = IDLE;
125         devc->samplerate = DEFAULT_SAMPLERATE;
126
127         sdi->priv = devc;
128
129         return sdi;
130 }
131
132 static 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
155 static void clear_helper(struct dev_context *devc)
156 {
157         g_slist_free(devc->enabled_channels);
158 }
159
160 static int dev_clear(const struct sr_dev_driver *di)
161 {
162         return std_dev_clear_with_callback(di, (std_dev_clear_callback)clear_helper);
163 }
164
165 static GSList *scan(struct sr_dev_driver *di, GSList *options)
166 {
167         struct drv_context *drvc;
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];
179
180         drvc = di->context;
181
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
214                 libusb_get_device_descriptor(devlist[i], &des);
215
216                 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
217                         continue;
218
219                 prof = NULL;
220                 for (j = 0; dev_profiles[j].orig_vid; j++) {
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);
226                                 sdi = hantek_6xxx_dev_new(prof);
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
241                                 && des.idProduct == dev_profiles[j].fw_pid
242                                 && des.bcdDevice == dev_profiles[j].fw_prod_ver) {
243                                 /* Device matches the post-firmware profile. */
244                                 prof = &dev_profiles[j];
245                                 sr_dbg("Found a %s %s.", prof->vendor, prof->model);
246                                 sdi = hantek_6xxx_dev_new(prof);
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);
262
263         return std_scan_complete(di, devices);
264 }
265
266 static int dev_open(struct sr_dev_inst *sdi)
267 {
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         }
299
300         if (err != SR_OK) {
301                 sr_err("Unable to open device.");
302                 return SR_ERR;
303         }
304
305         err = libusb_claim_interface(usb->devhdl, USB_INTERFACE);
306         if (err != 0) {
307                 sr_err("Unable to claim interface: %s.",
308                         libusb_error_name(err));
309                 return SR_ERR;
310         }
311
312         return SR_OK;
313 }
314
315 static int dev_close(struct sr_dev_inst *sdi)
316 {
317         hantek_6xxx_close(sdi);
318
319         return SR_OK;
320 }
321
322 static int config_get(uint32_t key, GVariant **data,
323         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
324 {
325         struct dev_context *devc;
326         struct sr_usb_dev_inst *usb;
327         const uint64_t *vdiv;
328         int ch_idx;
329
330         switch (key) {
331         case SR_CONF_NUM_VDIV:
332                 *data = g_variant_new_int32(ARRAY_SIZE(vdivs));
333                 break;
334         }
335
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;
359                         *data = g_variant_new_printf("%d.%d", usb->bus, usb->address);
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;
376                 case SR_CONF_COUPLING:
377                         *data = g_variant_new_string((devc->coupling[ch_idx] \
378                                         == COUPLING_DC) ? "DC" : "AC");
379                         break;
380                 }
381         }
382
383         return SR_OK;
384 }
385
386 static int config_set(uint32_t key, GVariant *data,
387         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
388 {
389         struct dev_context *devc;
390         int ch_idx, idx;
391
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:
406                         return SR_ERR_NA;
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:
417                         if ((idx = std_u64_tuple_idx(data, ARRAY_AND_SIZE(vdivs))) < 0)
418                                 return SR_ERR_ARG;
419                         devc->voltage[ch_idx] = idx;
420                         hantek_6xxx_update_vdiv(sdi);
421                         break;
422                 case SR_CONF_COUPLING:
423                         if ((idx = std_str_idx(data, devc->coupling_vals,
424                                                 devc->coupling_tab_size)) < 0)
425                                 return SR_ERR_ARG;
426                         devc->coupling[ch_idx] = idx;
427                         break;
428                 default:
429                         return SR_ERR_NA;
430                 }
431         }
432
433         return SR_OK;
434 }
435
436 static int config_list(uint32_t key, GVariant **data,
437         const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
438 {
439         struct dev_context *devc;
440
441         devc = (sdi) ? sdi->priv : NULL;
442
443         if (!cg) {
444                 switch (key) {
445                 case SR_CONF_SCAN_OPTIONS:
446                 case SR_CONF_DEVICE_OPTIONS:
447                         return STD_CONFIG_LIST(key, data, sdi, cg, scanopts, drvopts, devopts);
448                 case SR_CONF_SAMPLERATE:
449                         *data = std_gvar_samplerates(ARRAY_AND_SIZE(samplerates));
450                         break;
451                 default:
452                         return SR_ERR_NA;
453                 }
454         } else {
455                 switch (key) {
456                 case SR_CONF_DEVICE_OPTIONS:
457                         *data = std_gvar_array_u32(ARRAY_AND_SIZE(devopts_cg));
458                         break;
459                 case SR_CONF_COUPLING:
460                         if (!devc)
461                                 return SR_ERR_ARG;
462                         *data = g_variant_new_strv(devc->coupling_vals, devc->coupling_tab_size);
463                         break;
464                 case SR_CONF_VDIV:
465                         *data = std_gvar_tuple_array(ARRAY_AND_SIZE(vdivs));
466                         break;
467                 default:
468                         return SR_ERR_NA;
469                 }
470         }
471
472         return SR_OK;
473 }
474
475 /* Minimise data amount for limit_samples and limit_msec limits. */
476 static uint32_t data_amount(const struct sr_dev_inst *sdi)
477 {
478         struct dev_context *devc = sdi->priv;
479         uint32_t data_left, data_left_2, i;
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
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;
495
496         sr_spew("data_amount: %u (rounded to power of 2: %u)", data_left, data_left_2);
497
498         return data_left_2;
499 }
500
501 static void send_chunk(struct sr_dev_inst *sdi, unsigned char *buf,
502                 int num_samples)
503 {
504         struct sr_datafeed_packet packet;
505         struct sr_datafeed_analog analog;
506         struct sr_analog_encoding encoding;
507         struct sr_analog_meaning meaning;
508         struct sr_analog_spec spec;
509         struct dev_context *devc = sdi->priv;
510         GSList *channels = devc->enabled_channels;
511
512         const float ch_bit[] = { RANGE(0) / 255, RANGE(1) / 255 };
513         const float ch_center[] = { RANGE(0) / 2, RANGE(1) / 2 };
514
515         sr_analog_init(&analog, &encoding, &meaning, &spec, 0);
516
517         packet.type = SR_DF_ANALOG;
518         packet.payload = &analog;
519
520         analog.num_samples = num_samples;
521         analog.meaning->mq = SR_MQ_VOLTAGE;
522         analog.meaning->unit = SR_UNIT_VOLT;
523         analog.meaning->mqflags = 0;
524
525         analog.data = g_try_malloc(num_samples * sizeof(float));
526         if (!analog.data) {
527                 sr_err("Analog data buffer malloc failed.");
528                 devc->dev_state = STOPPING;
529                 return;
530         }
531
532         for (int ch = 0; ch < NUM_CHANNELS; ch++) {
533                 if (!devc->ch_enabled[ch])
534                         continue;
535
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         }
562         g_free(analog.data);
563 }
564
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  */
571 static 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) {
580                 g_free(transfer->buffer);
581                 libusb_free_transfer(transfer);
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
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
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
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);
614                 sr_dev_acquisition_stop(sdi);
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);
620                 sr_dev_acquisition_stop(sdi);
621         } else {
622                 read_channel(sdi, data_amount(sdi));
623         }
624 }
625
626 static 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();
636
637         return ret;
638 }
639
640 static int handle_event(int fd, int revents, void *cb_data)
641 {
642         const struct sr_dev_inst *sdi;
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
671                 std_session_send_df_end(sdi);
672
673                 devc->dev_state = IDLE;
674
675                 return TRUE;
676         }
677
678         return TRUE;
679 }
680
681 static int dev_acquisition_start(const struct sr_dev_inst *sdi)
682 {
683         struct dev_context *devc;
684         struct sr_dev_driver *di = sdi->driver;
685         struct drv_context *drvc = di->context;
686
687         devc = sdi->priv;
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
697         std_session_send_df_header(sdi);
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);
708
709         return SR_OK;
710 }
711
712 static int dev_acquisition_stop(struct sr_dev_inst *sdi)
713 {
714         struct dev_context *devc;
715
716         devc = sdi->priv;
717         devc->dev_state = STOPPING;
718
719         return SR_OK;
720 }
721
722 static struct sr_dev_driver hantek_6xxx_driver_info = {
723         .name = "hantek-6xxx",
724         .longname = "Hantek 6xxx",
725         .api_version = 1,
726         .init = std_init,
727         .cleanup = std_cleanup,
728         .scan = scan,
729         .dev_list = std_dev_list,
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 };
740 SR_REGISTER_DEV_DRIVER(hantek_6xxx_driver_info);