From: Spencer O. <nt...@us...> - 2010-05-07 18:02:55
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via cf811d8e6b7228348658f9211e0628fb725c5466 (commit) from f32492c74f29f7efd0d73f8118d0b988bc24f56a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit cf811d8e6b7228348658f9211e0628fb725c5466 Author: Spencer Oliver <nt...@us...> Date: Fri May 7 14:24:13 2010 +0100 cfg: add stm32eval board configs Increase working area for stm3210e_eval.cfg. Add new configs for the following boards: STM321000B-EVAL, STM32100C-EVAL, STM32100B-EVAL Signed-off-by: Spencer Oliver <nt...@us...> diff --git a/tcl/board/stm32100b_eval.cfg b/tcl/board/stm32100b_eval.cfg new file mode 100644 index 0000000..ba9058c --- /dev/null +++ b/tcl/board/stm32100b_eval.cfg @@ -0,0 +1,7 @@ +# This is an STM32 eval board with a single STM32F100VB chip on it. +# http://www.st.com/mcu/contentid-100-110-STM32100B_EVAL.html + +# we only have 8k sram +set WORKAREASIZE 8192 + +source [find target/stm32.cfg] diff --git a/tcl/board/stm3210b_eval.cfg b/tcl/board/stm3210b_eval.cfg new file mode 100644 index 0000000..5e0a5ea --- /dev/null +++ b/tcl/board/stm3210b_eval.cfg @@ -0,0 +1,8 @@ +# This is an STM32 eval board with a single STM32F100VBT6 chip on it. +# http://www.st.com/mcu/contentid-100-110-STM3210B_EVAL.html + +# increase working area for faster flash programming + +set WORKAREASIZE 32768 + +source [find target/stm32.cfg] diff --git a/tcl/board/stm3210c_eval.cfg b/tcl/board/stm3210c_eval.cfg new file mode 100644 index 0000000..fad8737 --- /dev/null +++ b/tcl/board/stm3210c_eval.cfg @@ -0,0 +1,8 @@ +# This is an STM32 eval board with a single STM32F107VCT chip on it. +# http://www.st.com/mcu/contentid-100-110-STM3210C_EVAL.html + +# increase working area for faster flash programming + +set WORKAREASIZE 32768 + +source [find target/stm32.cfg] diff --git a/tcl/board/stm3210e_eval.cfg b/tcl/board/stm3210e_eval.cfg index ab2f64f..83ce488 100644 --- a/tcl/board/stm3210e_eval.cfg +++ b/tcl/board/stm3210e_eval.cfg @@ -1,3 +1,8 @@ -# This is an STM32 eval board with a single STM32F103ZET6 chip on it. +# This is an STM32 eval board with a single STM32F103ZE chip on it. +# http://www.st.com/mcu/contentid-100-110-STM3210E_EVAL.html + +# increase working area for faster flash programming + +set WORKAREASIZE 32768 source [find target/stm32.cfg] ----------------------------------------------------------------------- Summary of changes: tcl/board/stm32100b_eval.cfg | 7 +++++++ tcl/board/stm3210b_eval.cfg | 8 ++++++++ tcl/board/stm3210c_eval.cfg | 8 ++++++++ tcl/board/stm3210e_eval.cfg | 7 ++++++- 4 files changed, 29 insertions(+), 1 deletions(-) create mode 100644 tcl/board/stm32100b_eval.cfg create mode 100644 tcl/board/stm3210b_eval.cfg create mode 100644 tcl/board/stm3210c_eval.cfg hooks/post-receive -- Main OpenOCD repository |