diff options
author | Piotr Esden-Tempski <piotr@esden.net> | 2010-11-29 12:35:39 -0800 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2010-11-30 08:15:19 +0100 |
commit | a9d0b3de44c2ecbe011d5b01d17c18b0e969cc53 (patch) | |
tree | fd95cff2a5b5de1588a822ddd886f590940866cd /tcl | |
parent | 9a04974131f6e95a587edee92dafba873fc5db52 (diff) | |
download | openocd_libswd-a9d0b3de44c2ecbe011d5b01d17c18b0e969cc53.tar.gz openocd_libswd-a9d0b3de44c2ecbe011d5b01d17c18b0e969cc53.tar.bz2 openocd_libswd-a9d0b3de44c2ecbe011d5b01d17c18b0e969cc53.tar.xz openocd_libswd-a9d0b3de44c2ecbe011d5b01d17c18b0e969cc53.zip |
Updated Floss-JTAG config file to support v0.3 and newer. Also added noeeprom version of the config file for older versions of Floss-JTAG.
Diffstat (limited to 'tcl')
-rw-r--r-- | tcl/interface/flossjtag-noeeprom.cfg | 19 | ||||
-rw-r--r-- | tcl/interface/flossjtag.cfg | 11 |
2 files changed, 29 insertions, 1 deletions
diff --git a/tcl/interface/flossjtag-noeeprom.cfg b/tcl/interface/flossjtag-noeeprom.cfg new file mode 100644 index 00000000..4e3466e4 --- /dev/null +++ b/tcl/interface/flossjtag-noeeprom.cfg @@ -0,0 +1,19 @@ +# +# FlossJTAG +# +# http://github.com/esden/floss-jtag +# +# This is the pre v0.3 Floss-JTAG compatible config file. It can also be used +# for newer versions of Floss-JTAG with empty or not populated eeprom. If you +# have several Floss-JTAG connected you have to use the usb id to select a +# specific one. +# +# If you have a Floss-JTAG WITH eeprom that is programmed use flossjtag.cfg +# file. +# + +interface ft2232 +ft2232_vid_pid 0x0403 0x6010 +ft2232_device_desc "Dual RS232-HS" +ft2232_layout "usbjtag" +ft2232_latency 2 diff --git a/tcl/interface/flossjtag.cfg b/tcl/interface/flossjtag.cfg index 396e9648..491f39aa 100644 --- a/tcl/interface/flossjtag.cfg +++ b/tcl/interface/flossjtag.cfg @@ -3,9 +3,18 @@ # # http://github.com/esden/floss-jtag # +# This is the v0.3 and v1.0 Floss-JTAG compatible config file. It relies on the +# existence of an eeprom on Floss-JTAG containing a name. If you have several +# Floss-JTAG adapters connected you can use the serial number to select a +# specific device. +# +# If your Floss-JTAG does not have an eeprom or eeprom is empty use +# flossjtag-noeeprom.cfg file. +# interface ft2232 ft2232_vid_pid 0x0403 0x6010 -ft2232_device_desc "Dual RS232-HS" +ft2232_device_desc "FLOSS-JTAG" +#ft2232_serial "FJ000001" ft2232_layout "usbjtag" ft2232_latency 2 |