scpi/usbtmc: Add Agilent DSO1000 series to RL1 blacklist.

These are rebadged Rigol DS1000 scopes, and suffer from the same USBTMC
implementation.
This commit is contained in:
Bert Vermeulen 2015-09-22 00:53:28 +02:00 committed by Uwe Hermann
parent de285cce11
commit 01b062390a
1 changed files with 2 additions and 0 deletions

View File

@ -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
};