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

[Backport v3.7.99-ncs1-branch] [nrf fromtree] boards: nordic: nrf54l15dk: Fix references to pdk #2238

Merged
merged 1 commit into from
Nov 7, 2024
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
2 changes: 1 addition & 1 deletion boards/nordic/nrf54l15dk/doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ to be built as multicore configuration with code snippet called ``vpr_launcher``
for the application core.

Enter the following command to compile ``hello_world`` for the FLPR core::
west build -p -b nrf54l15pdk/nrf54l15/cpuflpr --sysbuild -- -DSB_VPR_LAUNCHER=y
west build -p -b nrf54l15dk/nrf54l15/cpuflpr --sysbuild -- -DSB_VPR_LAUNCHER=y

Flashing
========
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

#include "nrf54l15pdk_nrf54l15_common.dtsi"
#include "nrf54l15dk_nrf54l15_common.dtsi"

/* To prevent enabling console receiver. */
&uart20 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: Apache-2.0
*/

#include "nrf54l15pdk_nrf54l15_common.dtsi"
#include "nrf54l15dk_nrf54l15_common.dtsi"

/* To prevent enabling console receiver. */
&uart30 {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#include "nrf54l15pdk_nrf54l15_cpuapp.overlay"
#include "nrf54l15dk_nrf54l15_cpuapp.overlay"
2 changes: 1 addition & 1 deletion tests/drivers/spi/spi_controller_peripheral/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ In this test suite two instances of the SPI peripheral are connected together.
One SPI instance works as a controller, second one is configured as a peripheral.
In each test, both instances get identical configuration (CPOL, CPHA, bitrate, etc.).

Four GPIO loopbacks are required (see overlay for nrf54l15pdk for reference):
Four GPIO loopbacks are required (see overlay for nrf54l15dk for reference):
1. spi22-SPIM_SCK connected with spi21-SPIS_SCK,
2. spi22-SPIM_MISO connected with spi21-SPIS_MISO,
3. spi22-SPIM_MOSI connected with spi21-SPIS_MOSI,
Expand Down
Loading