This is an automated email from Gerrit. "Alexey Charkov <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9566
-- gerrit commit a913908b741ca51c26dcf5a97907e41564755e64 Author: Alexey Charkov <[email protected]> Date: Wed Apr 8 13:32:48 2026 +0400 tcl/interface/ftdi: Add support for FT4232HL version 2/3 board SWD Add support for generic FTDI FT4232HL based boards available from a number of sellers on e.g. Aliexpress. This config uses the externally facing 20-pin connector internally routed to port B on the FT4232HL chip, specifically pin 5 for SWDIO and pin 9 for SWCLK (as marked on the board itself). Note that version 2 introduced dedicated jumpers enabling SWD-specific pullups, which must be activated for SWD to work properly. Link: https://aliexpress.com/item/32975940318.html Change-Id: I0b23ee44e04c7b5d4002131bfd4b003f4f7106ec Signed-off-by: Alexey Charkov <[email protected]> diff --git a/tcl/interface/ftdi/ft4232hl-board-v3-swd.cfg b/tcl/interface/ftdi/ft4232hl-board-v3-swd.cfg new file mode 100644 index 0000000000..ecaeb13767 --- /dev/null +++ b/tcl/interface/ftdi/ft4232hl-board-v3-swd.cfg @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +adapter driver ftdi + +ftdi vid_pid 0x0403 0x6011 +ftdi channel 1 + +ftdi layout_init 0x0000 0x000b +ftdi layout_signal nTRST -data 0x0010 -oe 0x0010 +ftdi layout_signal nSRST -data 0x0040 -oe 0x0040 +ftdi layout_signal SWD_EN -data 0 +ftdi layout_signal SWDIO_OE -data 0 + +transport select swd --
