jtag: add opendous and estick support

Change-Id: I49c25d226f05fdcaca6cbfc35c2ab47e8464abec
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/611
Tested-by: jenkins
This commit is contained in:
Spencer Oliver
2012-05-11 09:10:54 +01:00
parent ec5e4bae25
commit 0eaa8e7db0
8 changed files with 814 additions and 1 deletions

View File

@@ -107,6 +107,9 @@ extern struct jtag_interface stlink_interface;
#if BUILD_OSBDM == 1
extern struct jtag_interface osbdm_interface;
#endif
#if BUILD_OPENDOUS == 1
extern struct jtag_interface opendous_interface;
#endif
#endif /* standard drivers */
/**
@@ -182,6 +185,9 @@ struct jtag_interface *jtag_interfaces[] = {
#if BUILD_OSBDM == 1
&osbdm_interface,
#endif
#if BUILD_OPENDOUS == 1
&opendous_interface,
#endif
#endif /* standard drivers */
NULL,
};