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/+/9382
-- gerrit commit 6e77dccae5bf1811ac959ca2a7380172ac618016 Author: Mark O'Donovan <[email protected]> Date: Thu Jan 8 11:57:11 2026 +0000 tcl/target: Stop setting adapter speed in max32xxx_common.cfg Using the default speed is common and is preferred by OpenOCD. Change-Id: I10f4ab7981aa6f9ae8e0882494287cc4b26b0398 Signed-off-by: Mark O'Donovan <[email protected]> diff --git a/tcl/target/max32xxx_common.cfg b/tcl/target/max32xxx_common.cfg index 50a7d85e9b..e8e2dd4289 100644 --- a/tcl/target/max32xxx_common.cfg +++ b/tcl/target/max32xxx_common.cfg @@ -5,14 +5,6 @@ source [find mem_helper.tcl] source [find target/swj-dp.tcl] -# Set the adapter speed -if { [info exists ADAPTER_KHZ] } { - set _ADAPTER_KHZ $ADAPTER_KHZ -} else { - set _ADAPTER_KHZ 2000 -} -adapter speed $_ADAPTER_KHZ - # Target configuration if { [info exists CHIPNAME] } { set _CHIPNAME $CHIPNAME --
