aboutsummaryrefslogtreecommitdiff
path: root/tcl/target/stm32lx_stlink.cfg
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-04-27 10:41:45 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2012-04-30 13:06:29 +0000
commit8002ed268d5936fbf024b09b60eecae00d058bc4 (patch)
treee0ac47725e08478e04836e01fa4402dbbfe2b624 /tcl/target/stm32lx_stlink.cfg
parentff6c3dd13cf6d2cd25e55638ded3b1683958d752 (diff)
cfg: allow stm32discovery parameter override
This enable the user or board config to override the parameters passed to stm32_stlink.cfg. Required to fix a incorrect working area bug with the stm32vldiscovery. Change-Id: I40a4f7913ff37d577d44b1f23befccf0317080a1 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/597 Tested-by: jenkins Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com>
Diffstat (limited to 'tcl/target/stm32lx_stlink.cfg')
-rw-r--r--tcl/target/stm32lx_stlink.cfg14
1 files changed, 11 insertions, 3 deletions
diff --git a/tcl/target/stm32lx_stlink.cfg b/tcl/target/stm32lx_stlink.cfg
index e28818f3..f9211d23 100644
--- a/tcl/target/stm32lx_stlink.cfg
+++ b/tcl/target/stm32lx_stlink.cfg
@@ -2,9 +2,17 @@
# STM32lx stlink pseudo target
#
-set CHIPNAME stm32lx
-set CPUTAPID 0x2ba01477
-set WORKAREASIZE 0x3800
+if { [info exists CHIPNAME] == 0 } {
+ set CHIPNAME stm32lx
+}
+
+if { [info exists CPUTAPID] == 0 } {
+ set CPUTAPID 0x2ba01477
+}
+
+if { [info exists WORKAREASIZE] == 0 } {
+ set WORKAREASIZE 0x3800
+}
source [find target/stm32_stlink.cfg]