This is an automated email from Gerrit. Jiri Kastner ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4792
-- gerrit commit ab8c3d0706ce89588d895b6350f1e90115329fc6 Author: Jiri Kastner <[email protected]> Date: Thu Dec 6 21:23:25 2018 +0100 fix cc32xx related changes original CC3200 launchpad works only with ti-icdi driver which stopped to work after merging to master commit d02de3a8a92091b9761ebaf44dff1a71f5b2edcb Change-Id: I247b5d99831fa744de1fdc5b8a7cffdf49fe953c Signed-off-by: Jiri Kastner <[email protected]> diff --git a/tcl/board/ti-cc3200-launchxl.cfg b/tcl/board/ti-cc3200-launchxl.cfg deleted file mode 100644 index fd80c53..0000000 --- a/tcl/board/ti-cc3200-launchxl.cfg +++ /dev/null @@ -1,18 +0,0 @@ -# -# TI SimpleLink Wi-Fi CC3200 LaunchPad -# -# http://www.ti.com/tool/cc3200-launchxl -# - -source [find interface/ftdi/ti-icdi.cfg] - -if { [info exists TRANSPORT] } { - transport select $TRANSPORT -} else { - transport select jtag -} - -set WORKAREASIZE 0x40000 -source [find target/cc32xx.cfg] - -reset_config srst_only diff --git a/tcl/board/ti_cc3200_launchxl.cfg b/tcl/board/ti_cc3200_launchxl.cfg new file mode 100644 index 0000000..b78b09b --- /dev/null +++ b/tcl/board/ti_cc3200_launchxl.cfg @@ -0,0 +1,20 @@ +# +# TI SimpleLink Wi-Fi CC3200 LaunchPad +# +# http://www.ti.com/tool/cc3200-launchxl +# + +source [find interface/ftdi/ti-icdi.cfg] + +if { [info exists TRANSPORT] } { + transport select $TRANSPORT +} else { + transport select jtag +} + +adapter_khz 2500 + +set WORKAREASIZE 0x40000 +source [find target/ti_cc32xx.cfg] + +reset_config srst_only -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
