1# SPDX-License-Identifier: Apache-2.0
2
3# keep first
4board_runner_args(stm32cubeprogrammer "--port=swd" "--reset-mode=hw")
5if(CONFIG_STM32_MEMMAP OR (CONFIG_XIP AND CONFIG_BOOTLOADER_MCUBOOT))
6  board_runner_args(stm32cubeprogrammer "--extload=MX25LM51245G_STM32H573I-DK-RevB-SFIx.stldr")
7endif()
8
9board_runner_args(pyocd "--target=stm32h573iikx")
10
11board_runner_args(probe_rs "--chip=STM32H573II")
12
13board_runner_args(openocd "--tcl-port=6666")
14board_runner_args(openocd --cmd-pre-init "gdb_report_data_abort enable")
15board_runner_args(openocd "--no-halt")
16
17# keep first
18include(${ZEPHYR_BASE}/boards/common/stm32cubeprogrammer.board.cmake)
19include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
20include(${ZEPHYR_BASE}/boards/common/probe-rs.board.cmake)
21include(${ZEPHYR_BASE}/boards/common/openocd-stm32.board.cmake)
22# FIXME: official openocd runner not yet available.
23