Browse Source

tcl/board: Clean up STM32 EVAL boards configurations

Make consistent use of hex memory size for flashing.

Delete stm32f10x_128k_eval.cfg. It has no product reference
nor any settings in it.
tags/v0.5.0-rc1
Tormod Volden 13 years ago
committed by Øyvind Harboe
parent
commit
d33f4a2ad5
5 changed files with 8 additions and 15 deletions
  1. +2
    -2
      tcl/board/stm32100b_eval.cfg
  2. +2
    -3
      tcl/board/stm3210b_eval.cfg
  3. +2
    -3
      tcl/board/stm3210c_eval.cfg
  4. +2
    -3
      tcl/board/stm3210e_eval.cfg
  5. +0
    -4
      tcl/board/stm32f10x_128k_eval.cfg

+ 2
- 2
tcl/board/stm32100b_eval.cfg View 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]

+ 2
- 3
tcl/board/stm3210b_eval.cfg View 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]

+ 2
- 3
tcl/board/stm3210c_eval.cfg View 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]

+ 2
- 3
tcl/board/stm3210e_eval.cfg View 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]



+ 0
- 4
tcl/board/stm32f10x_128k_eval.cfg View File

@@ -1,4 +0,0 @@
# This is an STM32 eval board with a single STM32F103VBT6 chip on it.

source [find target/stm32.cfg]


Loading…
Cancel
Save