This is an automated email from Gerrit. Tomasz CEDRO ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/1073
-- gerrit commit 6e5361fe85e7af40a85e7db85c5bcd119390fe33 Author: Tomek CEDRO <[email protected]> Date: Sun Nov 11 19:19:35 2012 +0100 Added ft2232_swd to available interfaces to use. Change-Id: I4a88074d5a51f102b879618afea5b3cd214078f1 Signed-off-by: Tomek CEDRO <[email protected]> diff --git a/src/jtag/interfaces.c b/src/jtag/interfaces.c index 19d2fcc..d8ad8d0 100644 --- a/src/jtag/interfaces.c +++ b/src/jtag/interfaces.c @@ -2,7 +2,7 @@ * Copyright (C) 2005 by Dominic Rath * * [email protected] * * * - * Copyright (C) 2007,2008 Øyvind Harboe * + * Copyright (C) 2007,2008 Oyvind Harboe * * [email protected] * * * * Copyright (C) 2009 SoftPLC Corporation * @@ -12,6 +12,9 @@ * Copyright (C) 2009 Zachary T Welch * * [email protected] * * * + * Copyright (C) 2011-2012 Tomasz Boleslaw CEDRO * + * [email protected], http://www.tomek.cedro.info * + * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * @@ -55,9 +58,11 @@ extern struct jtag_interface dummy_interface; #endif #if BUILD_FT2232_FTD2XX == 1 extern struct jtag_interface ft2232_interface; +extern struct jtag_interface ft2232_interface_swd; #endif #if BUILD_FT2232_LIBFTDI == 1 extern struct jtag_interface ft2232_interface; +extern struct jtag_interface ft2232_interface_swd; #endif #if BUILD_FTDI == 1 extern struct jtag_interface ftdi_interface; @@ -139,9 +144,11 @@ struct jtag_interface *jtag_interfaces[] = { #endif #if BUILD_FT2232_FTD2XX == 1 &ft2232_interface, + &ft2232_interface_swd, #endif #if BUILD_FT2232_LIBFTDI == 1 &ft2232_interface, + &ft2232_interface_swd, #endif #if BUILD_FTDI == 1 &ftdi_interface, -- ------------------------------------------------------------------------------ LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs and mobile devices and provide instant support Improve your efficiency, and focus on delivering more value-add services Discover what IT Professionals Know. Rescue delivers http://p.sf.net/sfu/logmein_12329d2d _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
