|
From: <ge...@op...> - 2019-04-11 05:00:33
|
This is an automated email from Gerrit. Tommy Vestermark (to...@ve...) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5104 -- gerrit commit 7184d63a7e8092c2a23defa1938a5a612811b625 Author: Tommy Vestermark <to...@ve...> Date: Thu Apr 11 14:55:25 2019 +1000 tcl/board: Add support for TI TMS570LC43x LaunchPad Requires Cortex R5 enablement in 903ef931 Change-Id: I28f15bc9a4a5fdda242b1ed6b022a87ad65d588b Signed-off-by: Tommy Vestermark <to...@ve...> diff --git a/tcl/board/ti_tms570lc43x_launchpad.cfg b/tcl/board/ti_tms570lc43x_launchpad.cfg new file mode 100644 index 0000000..f419e0d --- /dev/null +++ b/tcl/board/ti_tms570lc43x_launchpad.cfg @@ -0,0 +1,22 @@ +# Board file for the TI Hercules TMS570LC43x LaunchPad Development Kit +# Part no.: LAUNCHXL2-570LC43 +# usage: openocd -f board/ti_tms570lc43x_launchpad.cfg + +# Using on-board XD1100 +source [find interface/cmsis-dap.cfg] +transport select jtag + +# TMS570LC4357 +set DAP_TAPID 0x0B95A02F +set JRC_TAPID 0x0B95A02F + +source [find target/ti_tms570.cfg] + +# SRST is connected to PORRST +# If srst is used a delay is needed +adapter_nsrst_delay 200 + +# Avoid cold reset - use PORRST button for that +#reset_config trst_and_srst +reset_config trst_only + -- |