diff options
author | Rémi PRUD’HOMME <prudhomme.remi@gmail.com> | 2015-04-29 15:49:31 +0200 |
---|---|---|
committer | Freddie Chopin <freddie.chopin@gmail.com> | 2015-11-12 15:03:18 +0000 |
commit | c3ea15dc62afcbdb69f4d8ee74c782426b650133 (patch) | |
tree | 328efe5b1d1c696dbe7fad20c1b0c130be4127ae /tcl/board | |
parent | ed54838ea61afa647a2b6ce2121b4a5bc11995ce (diff) |
Add config files for STM32F7-DISCO and STM327[4|5]6G-EVAL.
Change-Id: I0803939f0ab1de97e544ca0f1257daac11fb50de
Signed-off-by: Rémi PRUD'HOMME <prudhomme.remi@gmail.com>
Signed-off-by: Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
Reviewed-on: http://openocd.zylin.com/2754
Tested-by: jenkins
Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com>
Diffstat (limited to 'tcl/board')
-rw-r--r-- | tcl/board/stm327x6g_eval.cfg | 10 | ||||
-rwxr-xr-x | tcl/board/stm32f7discovery.cfg | 12 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tcl/board/stm327x6g_eval.cfg b/tcl/board/stm327x6g_eval.cfg new file mode 100644 index 00000000..a5e5896b --- /dev/null +++ b/tcl/board/stm327x6g_eval.cfg @@ -0,0 +1,10 @@ +# STM327[4|5]6G-EVAL: This is for the STM32F7 eval boards. +# STM32746G-EVAL +# http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1199/PF261639 +# STM32756G-EVAL +# http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1199/PF261640 + +# increase working area to 256KB +set WORKAREASIZE 0x40000 + +source [find target/stm32f7x.cfg] diff --git a/tcl/board/stm32f7discovery.cfg b/tcl/board/stm32f7discovery.cfg new file mode 100755 index 00000000..085340f3 --- /dev/null +++ b/tcl/board/stm32f7discovery.cfg @@ -0,0 +1,12 @@ +# This is an STM32F7 discovery board with a single STM32F756NGH6 chip. +# http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/LN1848/PF261641 + +# This is for using the onboard STLINK/V2-1 +source [find interface/stlink-v2-1.cfg] + +transport select hla_swd + +# increase working area to 256KB +set WORKAREASIZE 0x40000 + +source [find target/stm32f7x.cfg] |