This is an automated email from Gerrit. "Dhruva Gole <d-g...@ti.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8284
-- gerrit commit 181355de3b6b4b18381099b56dc7207331109506 Author: Dhruva Gole <d-g...@ti.com> Date: Fri May 17 16:11:42 2024 +0530 tcl/target: ti_cc3220sf: Use halt for CC3320SF targets The CC3220SF targets need a halt after a soft_reset_halt otherwise they keep throwing Error: Could not write to register 'msp' Change-Id: I6a5883238d5764d1ebb1215b02d3c82cfc71d858 Signed-off-by: Dhruva Gole <d-g...@ti.com> diff --git a/tcl/target/ti_cc3220sf.cfg b/tcl/target/ti_cc3220sf.cfg index cf43363768..f860018660 100644 --- a/tcl/target/ti_cc3220sf.cfg +++ b/tcl/target/ti_cc3220sf.cfg @@ -26,6 +26,7 @@ flash bank $_FLASHNAME cc3220sf 0 0 0 0 $_TARGETNAME proc ocd_process_reset_inner { MODE } { soft_reset_halt + halt # Initialize MSP, PSP, and PC from vector table at flash 0x01000800 set boot [read_memory 0x01000800 32 2] --