From bd676dd428f9135d1e7fbde917a8563c512c6bcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnim=20L=C3=A4uger?= Date: Tue, 27 Oct 2009 19:56:29 +0000 Subject: [PATCH] default vid/pid for Signalyzer (Adam Megacz) git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1673 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- urjtag/ChangeLog | 4 ++++ urjtag/src/tap/cable/ft2232.c | 9 ++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/urjtag/ChangeLog b/urjtag/ChangeLog index 6a0d9176..7604c06b 100644 --- a/urjtag/ChangeLog +++ b/urjtag/ChangeLog @@ -1,3 +1,7 @@ +2009-10-27 Arnim Laeuger + + * src/tap/cable/ft2232.c: default vid/pid for Signalyzer (Adam Megacz) + 2009-10-11 Mike Frysinger * MAINTAINERS: Add maintainer info for ADI parts. Drop the old P:/M: format diff --git a/urjtag/src/tap/cable/ft2232.c b/urjtag/src/tap/cable/ft2232.c index 9b774e2b..b211ebd1 100644 --- a/urjtag/src/tap/cable/ft2232.c +++ b/urjtag/src/tap/cable/ft2232.c @@ -52,7 +52,6 @@ #define DEFAULT_DRIVER "ftdi-mpsse" #endif - /* repeat the definitions for MPSSE command processor here since we cannot rely on the existence of ftdi.h even though they're defined there */ @@ -2089,15 +2088,15 @@ urj_usbconn_cable_t urj_tap_cable_usbconn_signalyzer_ftdi = { "Signalyzer", /* cable name */ NULL, /* string pattern, not used */ "ftdi-mpsse", /* default usbconn driver */ - 0x0000, /* VID */ - 0x0000 /* PID */ + 0x0403, /* VID */ + 0xbca1 /* PID */ }; urj_usbconn_cable_t urj_tap_cable_usbconn_signalyzer_ftd2xx = { "Signalyzer", /* cable name */ NULL, /* string pattern, not used */ "ftd2xx-mpsse", /* default usbconn driver */ - 0x0000, /* VID */ - 0x0000 /* PID */ + 0x0403, /* VID */ + 0xbca1 /* PID */ }; urj_cable_driver_t urj_tap_cable_ft2232_flyswatter_driver = {