boards: mimxrt1015_evk: enable support for linkserver

- adds the definitions in the board.cmake file
- updates documentation

Signed-off-by: Yves Vandervennet <yves.vandervennet@nxp.com>
This commit is contained in:
Yves Vandervennet 2024-01-17 09:01:11 -06:00 committed by Fabio Baltieri
parent c16d9699a3
commit e5fe1c1625
2 changed files with 23 additions and 7 deletions

View file

@ -1,10 +1,13 @@
#
# Copyright (c) 2019, NXP
# Copyright (c) 2019, 2024 NXP
#
# SPDX-License-Identifier: Apache-2.0
#
board_runner_args(pyocd "--target=mimxrt1015")
board_runner_args(jlink "--device=MIMXRT1015")
board_runner_args(linkserver "--device=MIMXRT1015xxxxx:EVK-MIMXRT1015")
include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake)

View file

@ -168,13 +168,26 @@ Configuring a Debug Probe
=========================
A debug probe is used for both flashing and debugging the board. This board is
configured by default to use the :ref:`opensda-daplink-onboard-debug-probe`,
however the :ref:`pyocd-debug-host-tools` do not yet support programming the
external flashes on this board so you must reconfigure the board for one of the
following debug probes instead.
configured by default to use the :ref:`opensda-daplink-onboard-debug-probe`.
:ref:`jlink-external-debug-probe`
-------------------------------------------
Using LinkServer: :ref:`opensda-daplink-onboard-debug-probe`
------------------------------------------------------------
Install the :ref:`linkserver-debug-host-tools` and make sure they are in your
search path. LinkServer works with the default CMSIS-DAP firmware included in
the on-board debugger.
Linkserver is the default runner. You may also se the ``-r linkserver`` option
with West to use the LinkServer runner.
.. code-block:: console
west flash
west debug
External JLink: :ref:`jlink-external-debug-probe`
-------------------------------------------------
Install the :ref:`jlink-debug-host-tools` and make sure they are in your search
path.