You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doc: known_issues: add nRF54L10 NVM size issue in FP Locator Tag sample
Defined a new known issue that describes the incorrect partition map
for the nrf54l15dk/nrf54l10/cpuapp board target in the Fast Pair
Locator Tag sample.
Ref: NCSDK-34582
Signed-off-by: Kamil Piszczek <[email protected]>
Copy file name to clipboardExpand all lines: doc/nrf/releases_and_maturity/known_issues.rst
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2705,6 +2705,36 @@ Bluetooth samples
2705
2705
2706
2706
.. rst-class:: v3-0-2 v3-0-1 v3-0-0
2707
2707
2708
+
NCSDK-34582: The :ref:`fast_pair_locator_tag` sample uses incorrect partition map for the nRF54L10 SoC
2709
+
The partition map for the ``nrf54l15dk/nrf54l10/cpuapp`` board target is incorrect in the :ref:`fast_pair_locator_tag` sample.
2710
+
In the |NCS| releases affected by this issue, it was assumed that the NVM size of the nRF54L15 SoC was 10 KB larger than the actual one.
2711
+
The NVM size of the nRF54L15 SoC is equal to 1012 KB.
2712
+
2713
+
The workaround fix for the nRF54L10 partition map is a breaking change and cannot be performed using DFU.
2714
+
The DFU procedure will fail if you attempt to upgrade the sample firmware based on one of the |NCS| releases that is affected by this issue.
2715
+
2716
+
**Affected platforms:** nRF54L10
2717
+
2718
+
**Workaround:** Manually cherry-pick and apply the commit with the fix from the ``main`` branch of the ``sdk-nrf`` repository (commit hash: ``43d0e2eb129bde7b0f0fc462dd4b239765c69c59``).
2719
+
Additionally, you need to manually update the :file:`boards/nordic/nrf54l15dk/nrf54l15dk_nrf54l10_cpuapp.dts` DTS file in your local copy of the ``sdk-zephyr`` repository to avoid issues with build asserts that are used for RRAM validation.
2720
+
Correct the ``cpuapp_rram`` DTS node in the following way:
2721
+
2722
+
.. code-block::
2723
+
2724
+
&cpuapp_rram {
2725
+
reg = <0x0 DT_SIZE_K(1012)>;
2726
+
};
2727
+
2728
+
Then, correct the ``storage_partition`` node in the following way:
2729
+
2730
+
.. code-block::
2731
+
2732
+
storage_partition: partition@f6000 {
2733
+
reg = <0xf6000 DT_SIZE_K(28)>;
2734
+
};
2735
+
2736
+
.. rst-class:: v3-0-2 v3-0-1 v3-0-0
2737
+
2708
2738
NCSDK-33915: The :ref:`direct_test_mode` asserts on nRF54H20 devices
2709
2739
The sample asserts during reception tests and sends too few packets during transmission tests.
0 commit comments