We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fbb9e6 commit 5ab62a4Copy full SHA for 5ab62a4
boards/arm/mimxrt1160_evk/board.cmake
@@ -4,8 +4,16 @@
4
# SPDX-License-Identifier: Apache-2.0
5
#
6
7
+if(CONFIG_SOC_MIMXRT1166_CM7)
8
board_runner_args(pyocd "--target=mimxrt1160_cm7")
9
board_runner_args(jlink "--device=MIMXRT1166xxx6_M7" "--reset-after-load")
10
+endif()
11
+
12
+if(CONFIG_SOC_MIMXRT1166_CM4)
13
+board_runner_args(pyocd "--target=mimxrt1160_cm4")
14
+# Note: Please use JLINK above V7.50 (Only support run cm4 image when debugging due to default boot core on board is cm7 core)
15
+board_runner_args(jlink "--device=MIMXRT1166xxx6_M4")
16
17
18
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
19
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
0 commit comments