cfg: stm32l use minimum family ram size for working area
The smallest pert in the family has 10k RAM, so use that as a default for the working area. Change-Id: I78be0d14a254c109ac15a7163552c6132f810416 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/1005 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>__archive__
parent
54a8640df0
commit
84043a95e1
|
@ -13,11 +13,11 @@ if { [info exists ENDIAN] } {
|
|||
}
|
||||
|
||||
# Work-area is a space in RAM used for flash programming
|
||||
# By default use 14kB
|
||||
# By default use 10kB
|
||||
if { [info exists WORKAREASIZE] } {
|
||||
set _WORKAREASIZE $WORKAREASIZE
|
||||
} else {
|
||||
set _WORKAREASIZE 0x3800
|
||||
set _WORKAREASIZE 0x2800
|
||||
}
|
||||
|
||||
# JTAG speed should be <= F_CPU/6.
|
||||
|
|
|
@ -11,7 +11,7 @@ if { [info exists CPUTAPID] == 0 } {
|
|||
}
|
||||
|
||||
if { [info exists WORKAREASIZE] == 0 } {
|
||||
set WORKAREASIZE 0x3800
|
||||
set WORKAREASIZE 0x2800
|
||||
}
|
||||
|
||||
source [find target/stm32_stlink.cfg]
|
||||
|
|
Loading…
Reference in New Issue