aboutsummaryrefslogtreecommitdiff
path: root/tcl/target/efm32_stlink.cfg
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2013-08-20 23:30:49 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2013-08-29 12:58:49 +0000
commitef1f2c0a3d585718d0db4faadb115a15c8019849 (patch)
tree8c51a132b19cec7a895c90e965178de6d1e1abf7 /tcl/target/efm32_stlink.cfg
parentd86211b1da4a9ab1f7412de959907d5d73a9188e (diff)
efm32: set safe minimum working area
The smallest available RAM size for this family is 2K, set this as the default. Issue reported by quitte on IRC. Change-Id: I3318f7f268f7681ffe2cddab61820f4b94c4e5fd Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/1559 Tested-by: jenkins
Diffstat (limited to 'tcl/target/efm32_stlink.cfg')
-rw-r--r--tcl/target/efm32_stlink.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcl/target/efm32_stlink.cfg b/tcl/target/efm32_stlink.cfg
index 9ef4845a..831f4f75 100644
--- a/tcl/target/efm32_stlink.cfg
+++ b/tcl/target/efm32_stlink.cfg
@@ -9,11 +9,11 @@ if { [info exists CHIPNAME] } {
}
# Work-area is a space in RAM used for flash programming
-# By default use 16kB
+# By default use 2kB
if { [info exists WORKAREASIZE] } {
set _WORKAREASIZE $WORKAREASIZE
} else {
- set _WORKAREASIZE 0x4000
+ set _WORKAREASIZE 0x800
}
if { [info exists CPUTAPID] } {