]> git.sur5r.net Git - openocd/commitdiff
tcl/board: Clean up STM32 EVAL boards configurations
authorTormod Volden <debian.tormod@gmail.com>
Sun, 19 Dec 2010 22:39:04 +0000 (23:39 +0100)
committerØyvind Harboe <oyvind.harboe@zylin.com>
Mon, 20 Dec 2010 06:52:28 +0000 (07:52 +0100)
Make consistent use of hex memory size for flashing.

Delete stm32f10x_128k_eval.cfg. It has no product reference
nor any settings in it.

tcl/board/stm32100b_eval.cfg
tcl/board/stm3210b_eval.cfg
tcl/board/stm3210c_eval.cfg
tcl/board/stm3210e_eval.cfg
tcl/board/stm32f10x_128k_eval.cfg [deleted file]

index f73443024a9d401cba433e0e34f42532ce4d5282..e04b612bcbf914a17204b66356137ee304b19cc2 100644 (file)
@@ -1,7 +1,7 @@
 # This is an STM32 eval board with a single STM32F100VBT6 chip.
 # http://www.st.com/internet/evalboard/product/247099.jsp
 
-# we only have 8k sram
-set WORKAREASIZE 8192
+# The chip has only 8KB sram
+set WORKAREASIZE 0x2000
 
 source [find target/stm32.cfg]
index d6b9dad568922eeaab5ca4b2695a12d884cdff37..70798c186705c5b22e90d20d053846c00421404c 100644 (file)
@@ -1,8 +1,7 @@
 # This is an STM32 eval board with a single STM32F10x (128KB) chip.
 # http://www.st.com/internet/evalboard/product/176090.jsp
 
-# increase working area for faster flash programming
-
-set WORKAREASIZE 32768
+# increase working area to 32KB for faster flash programming
+set WORKAREASIZE 0x8000
 
 source [find target/stm32.cfg]
index 6ab9181bbf8a4b4549ffc925b5f5f10978a5cd90..27684f0d87bfb676ccf5dbaf8c35c51843abfd87 100644 (file)
@@ -1,8 +1,7 @@
 # This is an STM32 eval board with a single STM32F107VCT chip.
 # http://www.st.com/internet/evalboard/product/217965.jsp
 
-# increase working area for faster flash programming
-
-set WORKAREASIZE 32768
+# increase working area to 32KB for faster flash programming
+set WORKAREASIZE 0x8000
 
 source [find target/stm32.cfg]
index b1da54c4d8bf029f5df301e9b4d5535d4f7a5846..786d02799a8790e84eae2c76148a3d410c998189 100644 (file)
@@ -1,9 +1,8 @@
 # This is an STM32 eval board with a single STM32F103ZET6 chip.
 # http://www.st.com/internet/evalboard/product/204176.jsp
 
-# increase working area for faster flash programming
-
-set WORKAREASIZE 32768
+# increase working area to 32KB for faster flash programming
+set WORKAREASIZE 0x8000
 
 source [find target/stm32.cfg]
 
diff --git a/tcl/board/stm32f10x_128k_eval.cfg b/tcl/board/stm32f10x_128k_eval.cfg
deleted file mode 100644 (file)
index ce07370..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-# This is an STM32 eval board with a single STM32F103VBT6 chip on it.
-
-source [find target/stm32.cfg]
-