zeroplus-logic-cube: Use physical USB connection instead of sdi->index
This commit is contained in:
parent
03a4c07aff
commit
ee4f9bb1bd
|
@ -168,9 +168,11 @@ static GSList *scan(GSList *options)
|
||||||
struct dev_context *devc;
|
struct dev_context *devc;
|
||||||
const struct zp_model *prof;
|
const struct zp_model *prof;
|
||||||
struct libusb_device_descriptor des;
|
struct libusb_device_descriptor des;
|
||||||
|
struct libusb_device_handle *hdl;
|
||||||
libusb_device **devlist;
|
libusb_device **devlist;
|
||||||
GSList *devices;
|
GSList *devices;
|
||||||
int ret, devcnt, i, j;
|
int ret, i, j;
|
||||||
|
char serial_num[64], connection_id[64];
|
||||||
|
|
||||||
(void)options;
|
(void)options;
|
||||||
|
|
||||||
|
@ -179,7 +181,6 @@ static GSList *scan(GSList *options)
|
||||||
devices = NULL;
|
devices = NULL;
|
||||||
|
|
||||||
/* Find all ZEROPLUS analyzers and add them to device list. */
|
/* Find all ZEROPLUS analyzers and add them to device list. */
|
||||||
devcnt = 0;
|
|
||||||
libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist); /* TODO: Errors. */
|
libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist); /* TODO: Errors. */
|
||||||
|
|
||||||
for (i = 0; devlist[i]; i++) {
|
for (i = 0; devlist[i]; i++) {
|
||||||
|
@ -190,6 +191,23 @@ static GSList *scan(GSList *options)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((ret = libusb_open(devlist[i], &hdl)) < 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (des.iSerialNumber == 0) {
|
||||||
|
serial_num[0] = '\0';
|
||||||
|
} else if ((ret = libusb_get_string_descriptor_ascii(hdl,
|
||||||
|
des.iSerialNumber, (unsigned char *) serial_num,
|
||||||
|
sizeof(serial_num))) < 0) {
|
||||||
|
sr_warn("Failed to get serial number string descriptor: %s.",
|
||||||
|
libusb_error_name(ret));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
libusb_close(hdl);
|
||||||
|
|
||||||
|
usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
|
||||||
|
|
||||||
prof = NULL;
|
prof = NULL;
|
||||||
for (j = 0; j < zeroplus_models[j].vid; j++) {
|
for (j = 0; j < zeroplus_models[j].vid; j++) {
|
||||||
if (des.idVendor == zeroplus_models[j].vid &&
|
if (des.idVendor == zeroplus_models[j].vid &&
|
||||||
|
@ -203,12 +221,14 @@ static GSList *scan(GSList *options)
|
||||||
sr_info("Found ZEROPLUS %s.", prof->model_name);
|
sr_info("Found ZEROPLUS %s.", prof->model_name);
|
||||||
|
|
||||||
/* Register the device with libsigrok. */
|
/* Register the device with libsigrok. */
|
||||||
if (!(sdi = sr_dev_inst_new(devcnt, SR_ST_INACTIVE,
|
if (!(sdi = sr_dev_inst_new(0, SR_ST_INACTIVE,
|
||||||
VENDOR_NAME, prof->model_name, NULL))) {
|
VENDOR_NAME, prof->model_name, NULL))) {
|
||||||
sr_err("%s: sr_dev_inst_new failed", __func__);
|
sr_err("%s: sr_dev_inst_new failed", __func__);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
sdi->driver = di;
|
sdi->driver = di;
|
||||||
|
sdi->serial_num = g_strdup(serial_num);
|
||||||
|
sdi->connection_id = g_strdup(connection_id);
|
||||||
|
|
||||||
/* Allocate memory for our private driver context. */
|
/* Allocate memory for our private driver context. */
|
||||||
if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
|
if (!(devc = g_try_malloc0(sizeof(struct dev_context)))) {
|
||||||
|
@ -244,8 +264,6 @@ static GSList *scan(GSList *options)
|
||||||
sdi->conn = sr_usb_dev_inst_new(
|
sdi->conn = sr_usb_dev_inst_new(
|
||||||
libusb_get_bus_number(devlist[i]),
|
libusb_get_bus_number(devlist[i]),
|
||||||
libusb_get_device_address(devlist[i]), NULL);
|
libusb_get_device_address(devlist[i]), NULL);
|
||||||
devcnt++;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
libusb_free_device_list(devlist, 1);
|
libusb_free_device_list(devlist, 1);
|
||||||
|
|
||||||
|
@ -263,8 +281,8 @@ static int dev_open(struct sr_dev_inst *sdi)
|
||||||
struct drv_context *drvc;
|
struct drv_context *drvc;
|
||||||
struct sr_usb_dev_inst *usb;
|
struct sr_usb_dev_inst *usb;
|
||||||
libusb_device **devlist, *dev;
|
libusb_device **devlist, *dev;
|
||||||
struct libusb_device_descriptor des;
|
|
||||||
int device_count, ret, i;
|
int device_count, ret, i;
|
||||||
|
char connection_id[64];
|
||||||
|
|
||||||
drvc = di->priv;
|
drvc = di->priv;
|
||||||
usb = sdi->conn;
|
usb = sdi->conn;
|
||||||
|
@ -283,27 +301,22 @@ static int dev_open(struct sr_dev_inst *sdi)
|
||||||
|
|
||||||
dev = NULL;
|
dev = NULL;
|
||||||
for (i = 0; i < device_count; i++) {
|
for (i = 0; i < device_count; i++) {
|
||||||
if ((ret = libusb_get_device_descriptor(devlist[i], &des))) {
|
usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
|
||||||
sr_err("Failed to get device descriptor: %s.",
|
if (!strcmp(sdi->connection_id, connection_id)) {
|
||||||
libusb_error_name(ret));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (libusb_get_bus_number(devlist[i]) == usb->bus
|
|
||||||
&& libusb_get_device_address(devlist[i]) == usb->address) {
|
|
||||||
dev = devlist[i];
|
dev = devlist[i];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!dev) {
|
if (!dev) {
|
||||||
sr_err("Device on bus %d address %d disappeared!",
|
sr_err("Device on %d.%d (logical) / %s (physical) disappeared!",
|
||||||
usb->bus, usb->address);
|
usb->bus, usb->address, sdi->connection_id);
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(ret = libusb_open(dev, &(usb->devhdl)))) {
|
if (!(ret = libusb_open(dev, &(usb->devhdl)))) {
|
||||||
sdi->status = SR_ST_ACTIVE;
|
sdi->status = SR_ST_ACTIVE;
|
||||||
sr_info("Opened device %d on %d.%d interface %d.",
|
sr_info("Opened device on %d.%d (logical) / %s (physical) interface %d.",
|
||||||
sdi->index, usb->bus, usb->address, USB_INTERFACE);
|
usb->bus, usb->address, sdi->connection_id, USB_INTERFACE);
|
||||||
} else {
|
} else {
|
||||||
sr_err("Failed to open device: %s.", libusb_error_name(ret));
|
sr_err("Failed to open device: %s.", libusb_error_name(ret));
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
@ -366,8 +379,8 @@ static int dev_close(struct sr_dev_inst *sdi)
|
||||||
if (!usb->devhdl)
|
if (!usb->devhdl)
|
||||||
return SR_ERR;
|
return SR_ERR;
|
||||||
|
|
||||||
sr_info("Closing device %d on %d.%d interface %d.", sdi->index,
|
sr_info("Closing device on %d.%d (logical) / %s (physical) interface %d.",
|
||||||
usb->bus, usb->address, USB_INTERFACE);
|
usb->bus, usb->address, sdi->connection_id, USB_INTERFACE);
|
||||||
libusb_release_interface(usb->devhdl, USB_INTERFACE);
|
libusb_release_interface(usb->devhdl, USB_INTERFACE);
|
||||||
libusb_reset_device(usb->devhdl);
|
libusb_reset_device(usb->devhdl);
|
||||||
libusb_close(usb->devhdl);
|
libusb_close(usb->devhdl);
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#define LIBSIGROK_HARDWARE_ZEROPLUS_LOGIC_CUBE_PROTOCOL_H
|
#define LIBSIGROK_HARDWARE_ZEROPLUS_LOGIC_CUBE_PROTOCOL_H
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <string.h>
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
#include <libusb.h>
|
#include <libusb.h>
|
||||||
#include "libsigrok.h"
|
#include "libsigrok.h"
|
||||||
|
|
Loading…
Reference in New Issue