Skip to content

Commit b2ec18e

Browse files
Tschet1rugeGerritsen
authored andcommitted
samples: bluetooth: increase timeslot overhead
When running on 52833, I observed that the sample could asser because of a timeslot overstay. Increase the requested timeslot length to avoid the assert. Signed-off-by: Jan Müller <jan.mueller@nordicsemi.no>
1 parent 1110f8d commit b2ec18e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

+4
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,10 @@ Other libraries
864864

865865
* Removed the following unused SDFW services: ``echo_service``, ``reset_evt_service``, and ``sdfw_update_service``.
866866

867+
* :ref:`mod_dm` library:
868+
869+
* Updated the default timeslot duration to avoid an overstay assert when the ranging failed.
870+
867871
Security libraries
868872
------------------
869873

subsys/dm/dm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ LOG_MODULE_REGISTER(nrf_dm, CONFIG_DM_MODULE_LOG_LEVEL);
6060
#define DM_THREAD_STACK_SIZE 1536
6161
#endif
6262

63-
#define DM_TIMESLOT_OVERHEAD_US 400
63+
#define DM_TIMESLOT_OVERHEAD_US 420
6464
#define DM_REFLECTOR_OVERHEAD_US 2000
6565

6666
static K_MUTEX_DEFINE(ranging_mtx);

0 commit comments

Comments
 (0)