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/+/9473
-- gerrit commit 09b4acd186020f586873ccdbddac53ee08f37cd6 Author: Mark O'Donovan <[email protected]> Date: Tue Feb 17 10:18:08 2026 +0000 tcl/target: Remove some max32 reset_configs These are not recommended unless they are necessary, and they do not seem to be necessary. Tested with cmsis-dap and jlink (where swd available) on the following boards: MAX32660-EVSYS MAX32662EVKIT MAX32670EVKIT MAX32672EVKIT MAX32690EVKIT Change-Id: I5f942e5334bf3c4b3e43f8c511a899de07d5acc7 Signed-off-by: Mark O'Donovan <[email protected]> diff --git a/tcl/target/max32660.cfg b/tcl/target/max32660.cfg index 89f5741de1..ea22a55035 100644 --- a/tcl/target/max32660.cfg +++ b/tcl/target/max32660.cfg @@ -1,9 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later # Maxim Integrated MAX32660 - Arm Cortex-M4F @ 96MHz -# Set the reset pin configuration -reset_config srst_only - # Set flash parameters set FLASH_BASE 0x0 set FLASH_SIZE 0x40000 diff --git a/tcl/target/max32662.cfg b/tcl/target/max32662.cfg index 70f486318a..5e34abe8e8 100644 --- a/tcl/target/max32662.cfg +++ b/tcl/target/max32662.cfg @@ -1,9 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later # Maxim Integrated MAX32662 - Arm Cortex-M4F @ 100MHz -# Set the reset pin configuration -reset_config srst_only - # Set flash parameters set FLASH_BASE 0x10000000 set FLASH_SIZE 0x40000 diff --git a/tcl/target/max32670.cfg b/tcl/target/max32670.cfg index 92dc6e12f3..632fdfe829 100644 --- a/tcl/target/max32670.cfg +++ b/tcl/target/max32670.cfg @@ -1,9 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later # Maxim Integrated MAX32670 - Arm Cortex-M4F @ 100MHz -# Set the reset pin configuration -reset_config none - # Set flash parameters set FLASH_BASE 0x10000000 set FLASH_SIZE 0x60000 diff --git a/tcl/target/max32672.cfg b/tcl/target/max32672.cfg index 9709b699fe..75143efc4b 100644 --- a/tcl/target/max32672.cfg +++ b/tcl/target/max32672.cfg @@ -1,10 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later # Maxim Integrated MAX32672 - Arm Cortex-M4F @ 100MHz -# Set the reset pin configuration -reset_config none -adapter srst pulse_width 200 - # Set flash parameters set FLASH_BASE 0x10000000 set FLASH_SIZE 0x80000 diff --git a/tcl/target/max32690.cfg b/tcl/target/max32690.cfg index de9d233bea..8cce9115e0 100644 --- a/tcl/target/max32690.cfg +++ b/tcl/target/max32690.cfg @@ -1,10 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later # Maxim Integrated MAX32690 - Arm Cortex-M4F @ 120MHz -# Set the reset pin configuration -reset_config srst_only -adapter srst pulse_width 2 - # Set flash parameters set FLASH_BASE 0x10000000 set FLASH_SIZE 0x300000 --
