12 lines
423 B
CMake
12 lines
423 B
CMake
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
board_runner_args(stm32cubeprogrammer "--erase" "--port=swd" "--reset-mode=hw")
|
||
|
|
||
|
board_runner_args(pyocd "--target=stm32h563zitx")
|
||
|
|
||
|
board_runner_args(jlink "--device=STM32H563ZI" "--reset-after-load")
|
||
|
|
||
|
include(${ZEPHYR_BASE}/boards/common/stm32cubeprogrammer.board.cmake)
|
||
|
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
|
||
|
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
|