Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

samples: fast_pair: locator_tag: Enable CONFIG_BT_CONN_TX_NOTIFY_WQ #18085

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,9 @@ Bluetooth Fast Pair samples

* The values for the :kconfig:option:`CONFIG_BT_ADV_PROV_TX_POWER_CORRECTION_VAL` Kconfig option in all configurations, and for the :kconfig:option:`CONFIG_BT_FAST_PAIR_FMDN_TX_POWER_CORRECTION_VAL` Kconfig option in configurations with the Find My Device Network (FMDN) extension support.
The values are now aligned with the Fast Pair requirements.
* The sample configurations to use a separate workqueue for connection TX notify processing (:kconfig:option:`CONFIG_BT_CONN_TX_NOTIFY_WQ`).
This is done to work around the timeout in MPSL flash synchronization (``NCSDK-29354`` known issue).
See :ref:`known_issues` for details.

* :ref:`fast_pair_locator_tag` sample:

Expand Down
4 changes: 4 additions & 0 deletions samples/bluetooth/fast_pair/input_device/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ CONFIG_BT_ADV_PROV_GAP_APPEARANCE_SD=y
# * nrf5340dk/nrf5340/cpuapp(/ns)
CONFIG_BT_ADV_PROV_TX_POWER_CORRECTION_VAL=-15

# Use a separate workqueue for connection TX notify processing. This is done to work
# around the MPSL flash synchronization timeout known issue (NCSDK-29354).
CONFIG_BT_CONN_TX_NOTIFY_WQ=y

# Disable automatic initiation of PHY updates.
# Workaround to prevent disconnection with reason 42 (BT_HCI_ERR_DIFF_TRANS_COLLISION).
# Some Android phones reply to the LL_PHY_REQ and at the same time initiate a connection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ CONFIG_BT_ADV_PROV_FAST_PAIR=y
CONFIG_BT_ADV_PROV_DEVICE_NAME=y
CONFIG_BT_ADV_PROV_DEVICE_NAME_SD=y

# Use a separate workqueue for connection TX notify processing. This is done to work
# around the MPSL flash synchronization timeout known issue (NCSDK-29354).
CONFIG_BT_CONN_TX_NOTIFY_WQ=y

# Disable automatic initiation of PHY updates.
# Workaround to prevent disconnection with reason 42 (BT_HCI_ERR_DIFF_TRANS_COLLISION).
# Some Android phones reply to the LL_PHY_REQ and at the same time initiate a connection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ CONFIG_BT_ADV_PROV_FAST_PAIR=y
CONFIG_BT_ADV_PROV_DEVICE_NAME=y
CONFIG_BT_ADV_PROV_DEVICE_NAME_SD=y

# Use a separate workqueue for connection TX notify processing. This is done to work
# around the MPSL flash synchronization timeout known issue (NCSDK-29354).
CONFIG_BT_CONN_TX_NOTIFY_WQ=y

# Disable automatic initiation of PHY updates.
# Workaround to prevent disconnection with reason 42 (BT_HCI_ERR_DIFF_TRANS_COLLISION).
# Some Android phones reply to the LL_PHY_REQ and at the same time initiate a connection
Expand Down
Loading