This is an automated email from Gerrit. "Ondřej Hošek <ondra.ho...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8997
-- gerrit commit 285f6bb5fdd84729370cb42322d64986c67becd9 Author: Ondřej Hošek <ondra.ho...@gmail.com> Date: Mon Jul 14 00:12:19 2025 +0200 tcl/board: add mikroe/clicker4-stm32f745vg Add a board configuration file for the MikroElektronika Clicker 4 for STM32F745VG (MIKROE-6331), which contains their CMSIS-DAP-compatible on-board CODEGRIP programmer. Place this into its own subdirectory, since MikroElektronika has quite a few boards in their portfolio. Change-Id: If24ca286d65e024f3c3a8522b67727e268ab0bc9 Signed-off-by: Ondřej Hošek <ondra.ho...@gmail.com> diff --git a/tcl/board/mikroe/clicker4-stm32f745vg.cfg b/tcl/board/mikroe/clicker4-stm32f745vg.cfg new file mode 100644 index 0000000000..9ccd948801 --- /dev/null +++ b/tcl/board/mikroe/clicker4-stm32f745vg.cfg @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +# This is a MikroElektronika Click 4 board with a single STM32F745VG chip +# and an on-board CODEGRIP debugger. +# https://www.mikroe.com/clicker-4-for-stm32f745vgt6 + +source [find interface/cmsis-dap.cfg] +transport select jtag +adapter speed 4000 + +source [find target/stm32f7x.cfg] --