diff options
author | Jim Norris <u17263@att.net> | 2011-10-26 19:30:20 -0500 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2011-10-27 00:47:22 +0000 |
commit | d265fa78c348b7148e417f5fd041d694c7ee51aa (patch) | |
tree | 630d1d7484ec0f4976545ef17a52c2b7383e2fad /tcl | |
parent | e6d979eefcc99aeb3f95fab67598af461ef234c1 (diff) | |
download | riscv-openocd-d265fa78c348b7148e417f5fd041d694c7ee51aa.zip riscv-openocd-d265fa78c348b7148e417f5fd041d694c7ee51aa.tar.gz riscv-openocd-d265fa78c348b7148e417f5fd041d694c7ee51aa.tar.bz2 |
Remove use of undefined variable.
Change-Id: Id8fd345438c360b2a42857525f05360ce2794d21
Signed-off-by: Jim Norris <u17263@att.net>
Reviewed-on: http://openocd.zylin.com/127
Reviewed-by: Peter Stuge <peter@stuge.se>
Tested-by: jenkins
Diffstat (limited to 'tcl')
-rw-r--r-- | tcl/target/at91sam3nXX.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcl/target/at91sam3nXX.cfg b/tcl/target/at91sam3nXX.cfg index 29c5ddc..5392824 100644 --- a/tcl/target/at91sam3nXX.cfg +++ b/tcl/target/at91sam3nXX.cfg @@ -18,7 +18,7 @@ if { [info exists CPUTAPID ] } { jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -irmask 0xf -expected-id $_CPUTAPID set _TARGETNAME $_CHIPNAME.cpu -target create $_TARGETNAME cortex_m3 -endian $_ENDIAN -chain-position $_TARGETNAME +target create $_TARGETNAME cortex_m3 -endian little -chain-position $_TARGETNAME set _FLASHNAME $_CHIPNAME.flash flash bank flash0 at91sam3 0x00400000 0 0 0 $_TARGETNAME |