Patch from Dimitar Dimitrov adding support for Olimex ARM-JTAG-EW

git-svn-id: svn://svn.berlios.de/openocd/trunk@1402 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
duane
2009-03-08 15:14:18 +00:00
parent 0a85c3426b
commit e211e4c6d2
7 changed files with 945 additions and 1 deletions

View File

@@ -155,6 +155,10 @@ static int hasKHz = 0;
extern jtag_interface_t rlink_interface;
#endif
#if BUILD_ARMJTAGEW == 1
extern jtag_interface_t armjtagew_interface;
#endif
jtag_interface_t *jtag_interfaces[] = {
#if BUILD_ECOSBOARD == 1
&zy1000_interface,
@@ -197,6 +201,9 @@ jtag_interface_t *jtag_interfaces[] = {
#endif
#if BUILD_RLINK == 1
&rlink_interface,
#endif
#if BUILD_ARMJTAGEW == 1
&armjtagew_interface,
#endif
NULL,
};