diff options
author | Samuel Martin <s.martin49@gmail.com> | 2016-05-19 01:15:52 +0200 |
---|---|---|
committer | Freddie Chopin <freddie.chopin@gmail.com> | 2016-05-20 21:29:04 +0100 |
commit | 0849dd71b156a2dd1c5756642a8b7a4747bd3b6b (patch) | |
tree | aa159d0eb3875791890501c727d409f6828f72e8 /tcl/board | |
parent | 8f26fa3c0ff7f3f43920165c75e757399742c1c8 (diff) | |
download | riscv-openocd-0849dd71b156a2dd1c5756642a8b7a4747bd3b6b.zip riscv-openocd-0849dd71b156a2dd1c5756642a8b7a4747bd3b6b.tar.gz riscv-openocd-0849dd71b156a2dd1c5756642a8b7a4747bd3b6b.tar.bz2 |
tcl: add STM32F429I-DISC1 board config
Both the STM32F429I-DISC{O,1} boards are equipped with the same MCU, but
differ by the debugging chip:
- the STM32F429I-DISCO uses the ST-LINK/V2 chip;
- the STM32F429I-DISC1 uses the ST-LINK/V2-B chip (which matches the USB
VID/PID set in stlink-v2-1.cfg).
Change-Id: I07d637f72d26cf5d714472638da974eb6ca02325
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Reviewed-on: http://openocd.zylin.com/3492
Reviewed-by: Andreas Färber <afaerber@suse.de>
Tested-by: jenkins
Reviewed-by: Freddie Chopin <freddie.chopin@gmail.com>
Diffstat (limited to 'tcl/board')
-rw-r--r-- | tcl/board/stm32f429disc1.cfg | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tcl/board/stm32f429disc1.cfg b/tcl/board/stm32f429disc1.cfg new file mode 100644 index 0000000..9d3cdd7 --- /dev/null +++ b/tcl/board/stm32f429disc1.cfg @@ -0,0 +1,12 @@ +# +# This is an STM32F429 discovery board with a single STM32F429ZI chip. +# http://www.st.com/web/catalog/tools/FM116/SC959/SS1532/PF259090 +# + +source [find interface/stlink-v2-1.cfg] + +transport select hla_swd + +source [find target/stm32f4x.cfg] + +reset_config srst_only |