diff options
author | Remco Bloemen <openocd-gerrit-git@xn--2-umb.com> | 2016-08-09 12:30:12 +0100 |
---|---|---|
committer | Andreas Fritiofson <andreas.fritiofson@gmail.com> | 2016-08-14 02:04:46 +0100 |
commit | 6a3423748b879c189d94612d88e0014378c1a619 (patch) | |
tree | bcfc132dcc859f820b6f7d9d82027b0daf1ce3f9 /tcl | |
parent | ff77b8fcd6948da05c00cabdb5352c3a36656dd3 (diff) | |
download | riscv-openocd-6a3423748b879c189d94612d88e0014378c1a619.zip riscv-openocd-6a3423748b879c189d94612d88e0014378c1a619.tar.gz riscv-openocd-6a3423748b879c189d94612d88e0014378c1a619.tar.bz2 |
interface: Add XDS100v3 support.
XDS100v3 is software compatible with the XDS100v2, but has a
different usb pid. This commit adds `xds100v3.cfg` that sources
the v2 one and changes the usb pid.
Change-Id: Ie29d325e8992d2de2f97d70862beeb63932ffa80
Signed-off-by: Remco Bloemen <openocd-gerrit@xn--2-umb.com>
Reviewed-on: http://openocd.zylin.com/3632
Tested-by: jenkins
Reviewed-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'tcl')
-rw-r--r-- | tcl/interface/ftdi/xds100v3.cfg | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tcl/interface/ftdi/xds100v3.cfg b/tcl/interface/ftdi/xds100v3.cfg new file mode 100644 index 0000000..6c70582 --- /dev/null +++ b/tcl/interface/ftdi/xds100v3.cfg @@ -0,0 +1,11 @@ +# +# Texas Instruments XDS100 ver 3.0 +# +# http://processors.wiki.ti.com/index.php/XDS100 +# + +# Version 3.0 is the same as 2.0 as far as OpenOCD is concerned +source [find interface/ftdi/xds100v2.cfg] + +# The USB ids are different. +ftdi_vid_pid 0x0403 0xa6d1 |