This is an automated email from Gerrit. "Mark O'Donovan <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9756
-- gerrit commit cd3ff2237eb3890580ab7350d92c35803582ac32 Author: Mark O'Donovan <[email protected]> Date: Wed Jun 24 23:04:38 2026 +0100 tcl/target: Add max32655.cfg Config file added and tested on MAX32655FTHR EV kit Change-Id: I373b79b6184f8b5c90f266cc693643cf2752bd45 Signed-off-by: Mark O'Donovan <[email protected]> diff --git a/tcl/target/max32655.cfg b/tcl/target/max32655.cfg new file mode 100644 index 0000000000..4151fe19d5 --- /dev/null +++ b/tcl/target/max32655.cfg @@ -0,0 +1,20 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# Maxim Integrated MAX32655 - Arm Cortex-M4F @ 100MHz + +# Set flash parameters +set FLASH_BASE 0x10000000 +set FLASH_SIZE 0x80000 +set FLC_BASE 0x40029000 +set FLASH_SECTOR 0x2000 +set FLASH_CLK 100 +set FLASH_OPTIONS 0x01 + +# Use Serial Wire Debug +transport select swd + +source [find target/max32xxx_common.cfg] + +if {![using_hla]} { + # The chip supports standard ARM/Cortex-M4 SYSRESETREQ signal + cortex_m reset_config sysresetreq +} --
