Skip to content

Commit 2786719

Browse files
krish2718rlubos
authored andcommitted
doc: nrf: Fix 54L PDK to DK
54L PDK support is now removed. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent 11d357f commit 2786719

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

doc/nrf/app_dev/device_guides/nrf70/index.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@ Zephyr and the |NCS| provide support for developing networking applications with
7777
- ``nrf54h20dk/nrf54h20/cpuapp``
7878
- | `nRF54H20 Objective Product Specification 0.3.1`_
7979
| :ref:`Getting started <ug_nrf54h20_gs>`
80-
* - :ref:`zephyr:nrf54l15pdk_nrf54l15`
80+
* - :ref:`zephyr:nrf54l15dk_nrf54l15`
8181
- nRF7002 EB
8282
- PCA20053
83-
- ``nrf54l15pdk/nrf54l15/cpuapp``
84-
- :ref:`Getting started <ug_nrf54l15_gs>`
83+
- ``nrf54l15dk/nrf54l15/cpuapp``
84+
- | `Quick Start`_
85+
| :ref:`Developing with nRF54L Series <ug_nrf54l15_gs>`
86+
8587

8688

8789
The following nRF70 Series shields are available and defined in the :file:`nrf/boards/shields` folder:

doc/nrf/app_dev/device_guides/nrf70/nrf7002eb_dev_guide.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. _ug_nrf7002eb_gs:
2-
.. _ug_nrf7002eb_nrf54l15pdk_gs:
2+
.. _ug_nrf7002eb_nrf54l15dk_gs:
33
.. _ug_nrf7002eb_nrf54h20dk_gs:
44

55
Developing with nRF7002 EB
@@ -12,7 +12,7 @@ Developing with nRF7002 EB
1212
The nRF7002 :term:`Expansion Board (EB)` (PCA63561), part of the `nRF70 Series Family <nRF70 Series product page_>`_, can be used to provide Wi-Fi® connectivity to compatible development or evaluation boards through the nRF7002 Wi-Fi 6 companion IC.
1313
For example, you can use it with the :ref:`Nordic Thingy:53 <ug_thingy53>`, an IoT prototyping platform from Nordic Semiconductor.
1414

15-
You can also use the nRF7002 EB to provide Wi-Fi connectivity to the :ref:`zephyr:nrf54h20dk_nrf54h20` and :ref:`zephyr:nrf54l15pdk_nrf54l15`.
15+
You can also use the nRF7002 EB to provide Wi-Fi connectivity to the :ref:`zephyr:nrf54h20dk_nrf54h20` and :ref:`zephyr:nrf54l15dk_nrf54l15`.
1616

1717
.. figure:: images/nRF7002eb.png
1818
:alt: nRF7002 EB
@@ -29,10 +29,10 @@ The castellated holes on the side of the board allow the EB to be used as a brea
2929
This way, you can provide Wi-Fi capabilities to develop Wi-Fi applications with another System on Chip (SoC), MPU, or MCU host.
3030
For the pinout of the castellated holes, see `nRF7002 EB castellated edge holes`_ in the board's `Hardware User Guide <nRF7002 EB User Guide_>`_.
3131

32-
Pin mapping for the nRF54H20 DK and the nRF54L15 PDK
33-
****************************************************
32+
Pin mapping for the nRF54H20 DK and the nRF54L15 DK
33+
***************************************************
3434

35-
For nRF54H20 DK and nRF54L15 PDK, refer to the following tables for the pin mapping for these kits:
35+
For nRF54H20 DK and nRF54L15 DK, refer to the following tables for the pin mapping for these kits:
3636

3737
.. tabs::
3838

@@ -65,10 +65,10 @@ For nRF54H20 DK and nRF54L15 PDK, refer to the following tables for the pin mapp
6565
.. note::
6666
Connect ``VIO`` to 1.8 V and ``VBAT`` to 3.6 V and ``GND``.
6767

68-
.. group-tab:: nRF54L15 PDK
68+
.. group-tab:: nRF54L15 DK
6969

7070
+-----------------------------------+-------------------+-----------------------------------------------+
71-
| nRF70 Series pin name (EB name) | nRF54L15 PDK pins | Function |
71+
| nRF70 Series pin name (EB name) | nRF54L15 DK pins | Function |
7272
+===================================+===================+===============================================+
7373
| CLK (CLK) | P1.11 | SPI Clock |
7474
+-----------------------------------+-------------------+-----------------------------------------------+
@@ -120,15 +120,15 @@ To build for the nRF7002 EB with nRF54H20 DK, use the ``nrf54h20dk/nrf54h20/cpua
120120
To build for a custom target, set ``-DSHIELD=nrf7002eb_interposer_p1;nrf7002eb`` when you invoke ``west build`` or ``cmake`` in your |NCS| application.
121121
Alternatively, you can add the shield in the project's :file:`CMakeLists.txt` file by using the ``set(SHIELD nrf7002eb_interposer_p1 nrf7002eb)`` command.
122122

123-
To build for the nRF7002 EB with the nRF54L15 PDK, use the ``nrf54l15pdk/nrf54l15/cpuapp`` board target with the CMake ``SHIELD`` variable set to ``nrf7002eb_interposer_p1 nrf7002eb``.
123+
To build for the nRF7002 EB with the nRF54L15 DK, use the ``nrf54l15dk/nrf54l15/cpuapp`` board target with the CMake ``SHIELD`` variable set to ``nrf7002eb_interposer_p1 nrf7002eb``.
124124
To build for a custom target, set ``-DSHIELD=nrf7002eb_interposer_p1;nrf7002eb`` when you invoke ``west build`` or ``cmake`` in your |NCS| application.
125125
Alternatively, you can add the shield in the project's :file:`CMakeLists.txt` file by using the ``set(SHIELD nrf7002eb_interposer_p1 nrf7002eb)`` command.
126126

127-
Limitations when building with nRF54H20 DK and nRF54L15 PDK
128-
***********************************************************
127+
Limitations when building with nRF54H20 DK and nRF54L15 DK
128+
**********************************************************
129129

130130
The Wi-Fi support is experimental and has the following limitations:
131131

132132
* It only supports STA mode.
133133
* It is only suitable for low-throughput applications.
134-
* For nRF54L15 PDK, WPA3 security mode is not supported.
134+
* For nRF54L15 DK, WPA3 security mode is not supported.

0 commit comments

Comments
 (0)