ioutil: make the file compile on MacOS
[fw/openocd] / tcl / target / stm32f2x_stlink.cfg
index bb113e04e98495e4119e82b18e901b1adbf851f5..d46ae7c4a2c110bc356f72365690c240667e7fce 100644 (file)
@@ -1,32 +1,20 @@
 #
+# STM32f2x stlink pseudo target
 #
-#
-if { [info exists CHIPNAME] } {
-   set _CHIPNAME $CHIPNAME
-} else {
-   set _CHIPNAME stm32
-}
 
-# Work-area is a space in RAM used for flash programming
-# By default use 64kB
-if { [info exists WORKAREASIZE] } {
-   set _WORKAREASIZE $WORKAREASIZE
-} else {
-   set _WORKAREASIZE 0x10000
+if { [info exists CHIPNAME] == 0 } {
+   set CHIPNAME stm32f2x
 }
 
-if { [info exists CPUTAPID] } {
-   set _CPUTAPID $CPUTAPID
-} else {
-   set _CPUTAPID 0x2ba01477
+if { [info exists CPUTAPID] == 0 } {
+   set CPUTAPID 0x2ba01477
 }
 
-stlink newtap $_CHIPNAME cpu -expected-id $_CPUTAPID
-
-set _TARGETNAME $_CHIPNAME.cpu
-target create $_TARGETNAME stm32_stlink -chain-position $_TARGETNAME
+if { [info exists WORKAREASIZE] == 0 } {
+   set WORKAREASIZE 0x10000
+}
 
-$_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
+source [find target/stm32_stlink.cfg]
 
 set _FLASHNAME $_CHIPNAME.flash
-flash bank $_FLASHNAME stm32f2x 0x08000000 0 0 0 $_TARGETNAME
+flash bank $_FLASHNAME stm32f2x 0 0 0 0 $_TARGETNAME