X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fhardware%2Ffx2lafw%2Fprotocol.c;h=7e7b189116c565bd6b7f352de84e340bdb247fe6;hb=66c91e2509e2d995fa0b576104aa5ee04e469f21;hp=64b440f642076a49916bd00770403693370bf447;hpb=2f663c826af929b203eb1dfe6f72928d216fb062;p=libsigrok.git diff --git a/src/hardware/fx2lafw/protocol.c b/src/hardware/fx2lafw/protocol.c index 64b440f6..7e7b1891 100644 --- a/src/hardware/fx2lafw/protocol.c +++ b/src/hardware/fx2lafw/protocol.c @@ -87,21 +87,25 @@ static int command_get_revid_version(struct sr_dev_inst *sdi, uint8_t *revid) SR_PRIV int fx2lafw_command_start_acquisition(const struct sr_dev_inst *sdi) { - struct dev_context *devc = sdi->priv; - struct sr_usb_dev_inst *usb = sdi->conn; - libusb_device_handle *devhdl = usb->devhdl; - uint64_t samplerate = devc->cur_samplerate; - gboolean samplewide = devc->sample_wide; - struct cmd_start_acquisition cmd = { 0 }; - int delay = 0, ret; + struct dev_context *devc; + struct sr_usb_dev_inst *usb; + uint64_t samplerate; + struct cmd_start_acquisition cmd; + int delay, ret; + + devc = sdi->priv; + usb = sdi->conn; + samplerate = devc->cur_samplerate; /* Compute the sample rate. */ - if (samplewide && samplerate > MAX_16BIT_SAMPLE_RATE) { + if (devc->sample_wide && samplerate > MAX_16BIT_SAMPLE_RATE) { sr_err("Unable to sample at %" PRIu64 "Hz " "when collecting 16-bit samples.", samplerate); return SR_ERR; } + delay = 0; + cmd.flags = cmd.sample_delay_h = cmd.sample_delay_l = 0; if ((SR_MHZ(48) % samplerate) == 0) { cmd.flags = CMD_START_FLAGS_CLK_48MHZ; delay = SR_MHZ(48) / samplerate - 1; @@ -126,11 +130,11 @@ SR_PRIV int fx2lafw_command_start_acquisition(const struct sr_dev_inst *sdi) cmd.sample_delay_l = delay & 0xff; /* Select the sampling width. */ - cmd.flags |= samplewide ? CMD_START_FLAGS_SAMPLE_16BIT : + cmd.flags |= devc->sample_wide ? CMD_START_FLAGS_SAMPLE_16BIT : CMD_START_FLAGS_SAMPLE_8BIT; /* Send the control message. */ - ret = libusb_control_transfer(devhdl, LIBUSB_REQUEST_TYPE_VENDOR | + ret = libusb_control_transfer(usb->devhdl, LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_OUT, CMD_START, 0x0000, 0x0000, (unsigned char *)&cmd, sizeof(cmd), 100); if (ret < 0) { @@ -194,8 +198,9 @@ SR_PRIV int fx2lafw_dev_open(struct sr_dev_inst *sdi, struct sr_dev_driver *di) struct dev_context *devc; struct drv_context *drvc; struct version_info vi; - int ret, skip, i, device_count; + int ret, i, device_count; uint8_t revid; + char connection_id[64]; drvc = di->priv; devc = sdi->priv; @@ -205,7 +210,6 @@ SR_PRIV int fx2lafw_dev_open(struct sr_dev_inst *sdi, struct sr_dev_driver *di) /* Device is already in use. */ return SR_ERR; - skip = 0; device_count = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist); if (device_count < 0) { sr_err("Failed to get device list: %s.", @@ -224,19 +228,13 @@ SR_PRIV int fx2lafw_dev_open(struct sr_dev_inst *sdi, struct sr_dev_driver *di) || des.idProduct != devc->profile->pid) continue; - if (sdi->status == SR_ST_INITIALIZING) { - if (skip != sdi->index) { - /* Skip devices of this type that aren't the one we want. */ - skip += 1; - continue; - } - } else if (sdi->status == SR_ST_INACTIVE) { + if ((sdi->status == SR_ST_INITIALIZING) || + (sdi->status == SR_ST_INACTIVE)) { /* - * This device is fully enumerated, so we need to find - * this device by vendor, product, bus and address. + * Check device by its physical USB bus/port address. */ - if (libusb_get_bus_number(devlist[i]) != usb->bus - || libusb_get_device_address(devlist[i]) != usb->address) + usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)); + if (strcmp(sdi->connection_id, connection_id)) /* This is not the one. */ continue; } @@ -279,9 +277,9 @@ SR_PRIV int fx2lafw_dev_open(struct sr_dev_inst *sdi, struct sr_dev_driver *di) } sdi->status = SR_ST_ACTIVE; - sr_info("Opened device %d on %d.%d, " + sr_info("Opened device on %d.%d (logical) / %s (physical), " "interface %d, firmware %d.%d.", - sdi->index, usb->bus, usb->address, + usb->bus, usb->address, connection_id, USB_INTERFACE, vi.major, vi.minor); sr_info("Detected REVID=%d, it's a Cypress CY7C68013%s.",