** ocd-20060822-ru1 -- update to OpenOCD r88 ---- The critical change is the ftd2xx to ft2232 command name ---- PLEASE UPDATE YOUR CONFIGURATION FILES (.cfg) ---- #from ---- #interface ---- interface ftd2xx ---- ftd2xx_device_desc "Amontec JTAGkey A" ---- ftd2xx_layout jtagkey ---- ftd2xx_vid_pid 0x0403 0xcff8 ---- #to ---- #interface ---- interface ft2232 ---- ft2232_device_desc "Amontec JTAGkey A" ---- ft2232_layout jtagkey ---- ft2232_vid_pid 0x0403 0xcff8 ---- The ft2232_device_desc is only honored if the FTD2XX library is being used. The ft2232_vid_pid setting is used with both libraries, but only on Linux. ---- Revision 81 fixed several minor problems, and added support for ARM966E based devices like the new STR9 series from ST Microelectronics. This code was contributed by Spencer Oliver, thanks a lot. ---- Revision 79/80 added two new commands, jtag_ntrst_delay and jtag_nsrst_delay , to accommodate for situations where external or internal reset circuitry might keep a reset signal asserted for some time after the reset signal from the JTAG interface was deasserted. Revision 82 fixed a bug that required the arguments to these commands to be in microseconds, while they were intended to be miliseconds. ---- jtag_nsrst_delay / How long (in miliseconds) the OpenOCD should wait after deasserting nSRST before starting new JTAG operations. ---- jtag_ntrst_delay /How long (in miliseconds) the OpenOCD should wait after deasserting nTRST before starting new JTAG operations. ---- The jtag_n[st]rst_delay options are useful if reset circuitry (like a reset supervisor, or on-chip features) keep a reset line asserted for some time after the external reset got deasserted. ** ocd-20060729-rc1 -- first published release candidate