Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

boards: mimxrt1024_evk: enable support for linkserver #79522

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion boards/nxp/mimxrt1024_evk/board.cmake
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
#
# Copyright (c) 2020, NXP
# Copyright (c) 2020, 2024 NXP
#
# SPDX-License-Identifier: Apache-2.0
#

board_runner_args(pyocd "--target=mimxrt1024")
board_runner_args(jlink "--device=MIMXRT1024xxx5A")
# MIMXRT1024xxxxx MIMXRT1024-EVK cm7
board_runner_args(linkserver "--device=MIMXRT1024xxxxx:MIMXRT1024-EVK")

include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)
5 changes: 3 additions & 2 deletions boards/nxp/mimxrt1024_evk/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,12 @@ remaining are not used.
Programming and Debugging
*************************

This board supports 2 debug host tools. Please install your preferred host
This board supports 3 debug host tools. Please install your preferred host
tool, then follow the instructions in `Configuring a Debug Probe`_ to
configure the board appropriately.

* :ref:`jlink-debug-host-tools` (Default, Supported by NXP)
* :ref:`linkserver-debug-host-tools` (Default, Supported by NXP)
* :ref:`jlink-debug-host-tools` (Supported by NXP)
* :ref:`pyocd-debug-host-tools` (Not supported by NXP)

Configuring a Debug Probe
Expand Down
Loading