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/+/9472
-- gerrit commit e946b952f53b2bacc3f505997cfc92756954cb31 Author: Mark O'Donovan <[email protected]> Date: Mon Feb 16 19:23:56 2026 +0000 tcl/target: Add max32666.cfg Config file added and tested on max32666 EV kit Change-Id: I26064bf36e491a75fb65759a560d287468ab0c47 Signed-off-by: Mark O'Donovan <[email protected]> diff --git a/tcl/target/max32666.cfg b/tcl/target/max32666.cfg new file mode 100644 index 0000000000..1e06a201b5 --- /dev/null +++ b/tcl/target/max32666.cfg @@ -0,0 +1,22 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# Maxim Integrated MAX32666 - Arm Cortex-M4F @ 96MHz + +# Set flash parameters +set FLASH_BASE 0x10000000 +set FLASH_SIZE 0x80000 +set FLC_BASE 0x40029000 +set FLASH_SECTOR 0x2000 +set FLASH_CLK 96 +set FLASH_OPTIONS 0x01 + +# Use Serial Wire Debug +transport select swd + +source [find target/max32xxx_common.cfg] + +# Add additional flash bank +set FLASH_BASE 0x10080000 +set FLC_BASE 0x40029400 + +flash bank $_CHIPNAME.flash1 max32xxx $FLASH_BASE $FLASH_SIZE 0 0 $_CHIPNAME.cpu \ +$FLC_BASE $FLASH_SECTOR $FLASH_CLK $FLASH_OPTIONS --
