X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Fscpi%2Fscpi_usbtmc_libusb.c;h=2da67030ed2495c41e9a0c3dcd56f9255d72f201;hb=22fdb67fa0714c11cc0a58ee1423f55d18a4f080;hp=d09b35ffb42b165bd12880e123cf0aba42221f00;hpb=87aa1e63e367475b8ea49a05427117c836dd2372;p=libsigrok.git diff --git a/src/scpi/scpi_usbtmc_libusb.c b/src/scpi/scpi_usbtmc_libusb.c index d09b35ff..2da67030 100644 --- a/src/scpi/scpi_usbtmc_libusb.c +++ b/src/scpi/scpi_usbtmc_libusb.c @@ -107,6 +107,7 @@ static struct usbtmc_blacklist blacklist_remote[] = { { 0x1ab1, 0x0588 }, /* Rigol DS1000 series */ { 0x1ab1, 0x04b0 }, /* Rigol DS2000 series */ { 0x1ab1, 0x04b1 }, /* Rigol DS4000 series */ + { 0x1ab1, 0x0515 }, /* Rigol MSO5000 series */ { 0x0957, 0x0588 }, /* Agilent DSO1000 series (rebadged Rigol DS1000) */ { 0x0b21, 0xffff }, /* All Yokogawa devices */ { 0xf4ec, 0xffff }, /* All Siglent SDS devices */ @@ -523,14 +524,36 @@ static int scpi_usbtmc_bulkin_start(struct scpi_usbtmc_libusb *uscpi, uint8_t *transfer_attributes) { struct sr_usb_dev_inst *usb = uscpi->usb; - int ret, transferred, message_size; + int ret, transferred, message_size, tries; + + for (tries = 0; ; tries++) { + ret = libusb_bulk_transfer(usb->devhdl, uscpi->bulk_in_ep, data, + size, &transferred, + TRANSFER_TIMEOUT); + if (ret < 0) { + sr_err("USBTMC bulk in transfer error: %s.", + libusb_error_name(ret)); + return SR_ERR; + } - ret = libusb_bulk_transfer(usb->devhdl, uscpi->bulk_in_ep, data, size, - &transferred, TRANSFER_TIMEOUT); - if (ret < 0) { - sr_err("USBTMC bulk in transfer error: %s.", - libusb_error_name(ret)); - return SR_ERR; + if (transferred == 0 && tries < 1) { + /* + * The DEV_DEP_MSG_IN message is empty, and the TMC + * spec says it should at least contain a header. + * The Rigol DS1054Z seems to do this sometimes, and + * it follows up with a valid message. Give the device + * one more chance to send a header. + */ + sr_warn("USBTMC bulk in start was empty; retrying\n"); + continue; + } + + if (transferred < USBTMC_BULK_HEADER_SIZE) { + sr_err("USBTMC bulk in returned too little data: %d/%d bytes\n", transferred, size); + return SR_ERR; + } + + break; } if (usbtmc_bulk_in_header_read(data, msg_id, uscpi->bTag, &message_size,