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
Document a known issue discovered during v2.1.0 release testing where
the Thingy:53 board (thingy53_nrf5340_cpuapp) cannot complete Bluetooth
LE pairing successfully.
Ref: NCSDK-39018
Signed-off-by: Piotr Osowski <piotr.osowski@nordicsemi.no>
Copy file name to clipboardExpand all lines: doc/known_issues.rst
+25-3Lines changed: 25 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,17 +24,39 @@ A known issue can list one or both of the following entries:
24
24
List of known issues for v2.1.0 release
25
25
***************************************
26
26
27
-
There are no reported known issues for the v2.1.0 release.
27
+
NCSDK-39293: Thingy:53 cannot pair successfully over Bluetooth LE
28
+
When using the Thingy:53 board, the device cannot complete Bluetooth LE pairing successfully.
29
+
30
+
**Affected platforms:** Thingy:53
31
+
32
+
NCSDK-39297: CMake duplicates the board configuration directory in ``CONF_FILE`` paths when used with the nRF Connect for VS Code GUI
33
+
The application's CMake setup sets ``APPLICATION_CONFIG_DIR`` to ``configuration/<board>_<qualifiers>/``, which causes Zephyr to resolve ``CONF_FILE`` relative to that directory instead of the application root.
34
+
As a result, ``CONF_FILE`` must be set to a file name only (for example, :file:`prj_release.conf`), and must not include the ``configuration/<board>_<qualifiers>/`` prefix.
35
+
36
+
However, the Kconfig fragment picker in the nRF Connect for VS Code extension inserts the path relative to the application root, for example::
**Workaround:** Set ``CONF_FILE`` to the file name only, relative to ``APPLICATION_CONFIG_DIR``, and omit the ``configuration/<board>_<qualifiers>/`` prefix.
47
+
On the command line, pass the file name directly, for example::
48
+
49
+
west build -b nrf54l15tag/nrf54l15/cpuapp -- -DCONF_FILE=prj_release.conf
28
50
29
51
List of known issues for v2.0.0 release
30
52
***************************************
31
53
32
54
DRGN-27788: Bluetooth LE disables RRAM low-latency mode when using AXON NPU and Bluetooth LE simultaneously on the nRF54LM20B SoC
33
-
When running AXON and Bluetooth LE together on nRF54LM20B, Bluetooth LE might disable RRAM low-latency mode during radio activity, which may slow or corrupt an ongoing inference.
55
+
When running AXON and Bluetooth LE together on nRF54LM20B, Bluetooth LE might disable RRAM low-latency mode during radio activity, which may slow or corrupt an ongoing inference.
34
56
MPSL sets STANDBY mode in ``NRF_RRAMC->POWER.LOWPOWERCONFIG`` at the start of each radio slot and restores the application init value at the end.
35
57
In a power-optimized application, if the radio slot ends while an inference is running on Axon, the low-power (``NRF_RRAMC_LP_POWER_OFF``) value will be forced by MPSL, slowing down the rest of the inference.
36
58
37
59
**Workaround:** Use ``CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME`` to keep RRAM permanently in STANDBY mode.
38
60
This setting increases power consumption but ensures reliable performance.
0 commit comments