From 01b062390aa2fa488571f02b743fc4e6e6167657 Mon Sep 17 00:00:00 2001 From: Bert Vermeulen Date: Tue, 22 Sep 2015 00:53:28 +0200 Subject: [PATCH] scpi/usbtmc: Add Agilent DSO1000 series to RL1 blacklist. These are rebadged Rigol DS1000 scopes, and suffer from the same USBTMC implementation. --- src/scpi/scpi_usbtmc_libusb.c | 2 ++ 1 file changed, 2 insertions(+) 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 };