From: Bert Vermeulen Date: Mon, 21 Sep 2015 22:53:28 +0000 (+0200) Subject: scpi/usbtmc: Add Agilent DSO1000 series to RL1 blacklist. X-Git-Tag: libsigrok-0.4.0~255 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=01b062390aa2fa488571f02b743fc4e6e6167657;p=libsigrok.git scpi/usbtmc: Add Agilent DSO1000 series to RL1 blacklist. These are rebadged Rigol DS1000 scopes, and suffer from the same USBTMC implementation. --- diff --git a/src/scpi/scpi_usbtmc_libusb.c b/src/scpi/scpi_usbtmc_libusb.c index 9042ef4f..cd9ade47 100644 --- a/src/scpi/scpi_usbtmc_libusb.c +++ b/src/scpi/scpi_usbtmc_libusb.c @@ -104,6 +104,8 @@ struct usbtmc_blacklist { static struct usbtmc_blacklist blacklist_remote[] = { /* Rigol DS1000 series publishes RL1 support, but doesn't support it. */ { 0x1ab1, 0x0588 }, + /* Agilent DSO1000 series are rebadged versions of the Rigol DS1000. */ + { 0x0957, 0x0588 }, ALL_ZERO };