This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/1436
-- gerrit commit dd5da0fed822a0d936d6ef7578c479b8d946291f Author: Spencer Oliver <[email protected]> Date: Fri Jun 7 15:52:20 2013 +0100 str9: ignore boundary scan version Ignore version of Boundary Scan TAP in newer revisions of the str9. Change-Id: I6e205f8c731f07078c469e686025857c180f3a6d Signed-off-by: Spencer Oliver <[email protected]> diff --git a/tcl/target/str912.cfg b/tcl/target/str912.cfg index 57bf8b6..599a254 100644 --- a/tcl/target/str912.cfg +++ b/tcl/target/str912.cfg @@ -39,9 +39,11 @@ jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CP if { [info exists BSTAPID] } { set _BSTAPID $BSTAPID } else { + # possible values: 0x1457f041, 0x2457f041 + # we ignore version in check below set _BSTAPID 0x1457f041 } -jtag newtap $_CHIPNAME bs -irlen 5 -ircapture 0x1 -irmask 0x1 -expected-id $_BSTAPID +jtag newtap $_CHIPNAME bs -irlen 5 -ircapture 0x1 -irmask 0x1 -expected-id $_BSTAPID -ignore-version set _TARGETNAME $_CHIPNAME.cpu target create $_TARGETNAME arm966e -endian $_ENDIAN -chain-position $_TARGETNAME -variant arm966e -- ------------------------------------------------------------------------------ How ServiceNow helps IT people transform IT departments: 1. A cloud service to automate IT design, transition and operations 2. Dashboards that offer high-level views of enterprise services 3. A single system of record for all IT processes http://p.sf.net/sfu/servicenow-d2d-j _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
