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/+/9323
-- gerrit commit b6c0d7f5e43ef6242aaaaa9bc3a906fc83987ea4 Author: Mark O'Donovan <[email protected]> Date: Sun Dec 21 11:50:33 2025 +0000 tcl/target: Fix include paths and standardise max32 configs Corrected the include path for max32xxx_common.cfg in some files. Cleaned up and standarised some comments in the max32... files. Change-Id: I94dcc7ba6868bdd9730f03d3aa76fcdbbae33c3e Signed-off-by: Mark O'Donovan <[email protected]> diff --git a/tcl/target/max32620.cfg b/tcl/target/max32620.cfg index 807f8145e0..b1f96c732e 100644 --- a/tcl/target/max32620.cfg +++ b/tcl/target/max32620.cfg @@ -1,7 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-or-later -# Maxim Integrated MAX32620 OpenOCD target configuration file - # Set the reset pin configuration reset_config srst_only adapter srst delay 200 diff --git a/tcl/target/max32625.cfg b/tcl/target/max32625.cfg index 8d9479c39b..13521ecc89 100644 --- a/tcl/target/max32625.cfg +++ b/tcl/target/max32625.cfg @@ -1,7 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-or-later -# Maxim Integrated MAX32625 OpenOCD target configuration file - # Set the reset pin configuration reset_config srst_only adapter srst delay 200 diff --git a/tcl/target/max3263x.cfg b/tcl/target/max3263x.cfg index 413c49188b..be8218591f 100644 --- a/tcl/target/max3263x.cfg +++ b/tcl/target/max3263x.cfg @@ -1,7 +1,5 @@ # SPDX-License-Identifier: GPL-2.0-or-later -# Maxim Integrated MAX3263X OpenOCD target configuration file - # Set the reset pin configuration reset_config none diff --git a/tcl/target/max32670.cfg b/tcl/target/max32670.cfg index b8c76af5e1..c4392c62ee 100644 --- a/tcl/target/max32670.cfg +++ b/tcl/target/max32670.cfg @@ -1,7 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later -# maxim Integrated OpenOCD target configuration file -# reset pin configuration +# Set the reset pin configuration reset_config none adapter_nsrst_delay 200 adapter_nsrst_assert_width 200 @@ -17,7 +16,7 @@ set FLASH_OPTIONS 0x01 # Use Serial Wire Debug transport select swd -source [find target/max32xxx.cfg] +source [find target/max32xxx_common.cfg] # Early revisions of the MAX32670 will disable SWD upon reset. There are reserved address locations # in the ROM code that can be used to insert breakpoints. diff --git a/tcl/target/max32672.cfg b/tcl/target/max32672.cfg index 26c7c82dbc..4a51639b7d 100644 --- a/tcl/target/max32672.cfg +++ b/tcl/target/max32672.cfg @@ -1,7 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later -# maxim Integrated OpenOCD target configuration file -# reset pin configuration +# Set the reset pin configuration reset_config none adapter_nsrst_delay 200 adapter_nsrst_assert_width 200 @@ -17,7 +16,7 @@ set FLASH_OPTIONS 0x01 # Use Serial Wire Debug transport select swd -source [find target/max32xxx.cfg] +source [find target/max32xxx_common.cfg] # Add additional flash bank set FLASH_BASE 0x10080000 diff --git a/tcl/target/max32675.cfg b/tcl/target/max32675.cfg index cbc718c9c7..5abdf81743 100644 --- a/tcl/target/max32675.cfg +++ b/tcl/target/max32675.cfg @@ -1,7 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later -# maxim Integrated OpenOCD target configuration file -# reset pin configuration +# Set the reset pin configuration reset_config none adapter_nsrst_delay 200 adapter_nsrst_assert_width 200 @@ -17,7 +16,7 @@ set FLASH_OPTIONS 0x01 # Use Serial Wire Debug transport select swd -source [find target/max32xxx.cfg] +source [find target/max32xxx_common.cfg] # Early revisions of the MAX3275 will disable SWD upon reset. There are reserved address locations # in the ROM code that can be used to insert breakpoints. diff --git a/tcl/target/max32690.cfg b/tcl/target/max32690.cfg index 63f987458a..bba82b8bab 100644 --- a/tcl/target/max32690.cfg +++ b/tcl/target/max32690.cfg @@ -1,5 +1,4 @@ # SPDX-License-Identifier: GPL-2.0-or-later -# Maxim Integrated MAX32690 OpenOCD target configuration file # Set the reset pin configuration reset_config srst_only @@ -17,7 +16,7 @@ set FLASH_OPTIONS 0x01 # Use Serial Wire Debug transport select swd -source [find target/max32xxx.cfg] +source [find target/max32xxx_common.cfg] # Add additional flash bank set FLASH_BASE 0x10300000 --
