Skip to content

Commit 3733b1b

Browse files
committed
doc: Add Thingy:53 pairing known issue for v2.1.0
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>
1 parent 679cfad commit 3733b1b

1 file changed

Lines changed: 25 additions & 3 deletions

File tree

doc/known_issues.rst

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,39 @@ A known issue can list one or both of the following entries:
2424
List of known issues for v2.1.0 release
2525
***************************************
2626

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::
37+
38+
configuration/nrf54l15tag_nrf54l15_cpuapp/prj_release.conf
39+
40+
CMake then prepends ``APPLICATION_CONFIG_DIR`` again, the board configuration sub-path is duplicated, and the build fails with an error similar to::
41+
42+
CMake Error at .../zephyr/cmake/modules/kconfig.cmake:318 (message):
43+
File not found:
44+
.../applications/gesture_recognition/configuration/nrf54l15tag_nrf54l15_cpuapp/configuration/nrf54l15tag_nrf54l15_cpuapp/prj.conf
45+
46+
**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
2850

2951
List of known issues for v2.0.0 release
3052
***************************************
3153

3254
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.
3456
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.
3557
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.
3658

3759
**Workaround:** Use ``CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME`` to keep RRAM permanently in STANDBY mode.
3860
This setting increases power consumption but ensures reliable performance.
39-
61+
4062
**Affected platforms:** nRF54LM20B SoC

0 commit comments

Comments
 (0)