From 5468569dabfcb4699374e0bb1224c4ff8ff1d478 Mon Sep 17 00:00:00 2001 From: Andrej Butok Date: Tue, 7 May 2024 14:40:10 +0200 Subject: [PATCH] boards: nxp: frdm_mcxn947: Add pyocd runner support The Pyocd support added with the NXP.MCXN947_DFP.17.0.0.pack CMSIS Pack. Signed-off-by: Andrej Butok --- boards/nxp/frdm_mcxn947/board.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boards/nxp/frdm_mcxn947/board.cmake b/boards/nxp/frdm_mcxn947/board.cmake index 86cdff853d9..fa5862e5e00 100644 --- a/boards/nxp/frdm_mcxn947/board.cmake +++ b/boards/nxp/frdm_mcxn947/board.cmake @@ -23,6 +23,9 @@ else() message(FATAL_ERROR "Support for cpu1 not available yet") endif() +# Pyocd support added with the NXP.MCXN947_DFP.17.0.0.pack CMSIS Pack +board_runner_args(pyocd "--target=mcxn947") include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake) include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) +include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)