The OpenOCD STM32-specific configuration was included into the common configuration, which was then used in board files. Follow nRF5 convention instead: use manufacturer-specific config in boards. Also due to the fact that the include of STM32-specific config was placed *after* board_finalize_runner_args() it didn't really work anyways. Signed-off-by: Marek Metelski <marek@metelski.dev>
16 lines
622 B
CMake
16 lines
622 B
CMake
# keep first
|
|
board_runner_args(stm32cubeprogrammer "--port=swd" "--reset-mode=hw")
|
|
|
|
board_runner_args(openocd "--tcl-port=6666")
|
|
board_runner_args(openocd --cmd-pre-init "gdb_report_data_abort enable")
|
|
board_runner_args(openocd "--no-halt")
|
|
|
|
board_runner_args(pyocd "--target=stm32u575zitx")
|
|
|
|
board_runner_args(jlink "--device=STM32U575ZI" "--reset-after-load")
|
|
|
|
# keep first
|
|
include(${ZEPHYR_BASE}/boards/common/stm32cubeprogrammer.board.cmake)
|
|
include(${ZEPHYR_BASE}/boards/common/openocd-stm32.board.cmake)
|
|
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
|
|
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
|