18 lines
636 B
CMake
18 lines
636 B
CMake
#
|
|
# Copyright 2023 NXP
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if(CONFIG_SOC_MIMXRT1176_CM7 OR CONFIG_SECOND_CORE_MCUX)
|
|
board_runner_args(pyocd "--target=mimxrt1170_cm7")
|
|
board_runner_args(jlink "--device=MIMXRT1176xxxA_M7" "--reset-after-load")
|
|
elseif(CONFIG_SOC_MIMXRT1176_CM4)
|
|
board_runner_args(pyocd "--target=mimxrt1170_cm4")
|
|
# Note: Please use JLINK above V7.50 (Only support run cm4 image when debugging due to default boot core on board is cm7 core)
|
|
board_runner_args(jlink "--device=MIMXRT1176xxxA_M4")
|
|
endif()
|
|
|
|
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
|
|
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
|