-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
boards: arm: LPC55Sx6: Enable LinkServer and PyOCD runners.
Enable LinkerServer and PyOCD runners for LPC55Sx6 EVKs, where it is supported. It was tested on a real HW. Signed-off-by: Andrej Butok <[email protected]>
- Loading branch information
1 parent
47ad8f0
commit 3b5fd5f
Showing
3 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# | ||
# Copyright (c) 2022 metraTec | ||
# Copyright 2023 NXP | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
board_runner_args(linkserver "--device=LPC55S06:LPCXpresso55S06") | ||
board_runner_args(jlink "--device=LPC55S06" "--reset-after-load") | ||
|
||
include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake) | ||
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# | ||
# Copyright (c) 2020 Henrik Brix Andersen <[email protected]> | ||
# Copyright 2023 NXP | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
board_runner_args(linkserver "--device=LPC55S16:LPCXpresso55S16") | ||
board_runner_args(jlink "--device=LPC55S16" "--reset-after-load") | ||
board_runner_args(pyocd "--target=lpc55s16") | ||
|
||
include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake) | ||
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) | ||
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# | ||
# Copyright 2022 NXP | ||
# Copyright 2022-2023 NXP | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
board_runner_args(linkserver "--device=LPC55S36:LPCXpresso55S36") | ||
board_runner_args(jlink "--device=LPC55S36" "--reset-after-load") | ||
board_runner_args(pyocd "--target=lpc55s36") | ||
|
||
include(${ZEPHYR_BASE}/boards/common/linkserver.board.cmake) | ||
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) | ||
include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake) |