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: peripheral_fast_pair: Disable CCC Lazy Loading to allow for rebond #12033

Merged
merged 1 commit into from
Aug 21, 2023
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
1 change: 1 addition & 0 deletions doc/nrf/links.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
.. _`Zephyr pull request #29618`: https://github.com/zephyrproject-rtos/zephyr/pull/29618
.. _`Zephyr issue #27356`: https://github.com/zephyrproject-rtos/zephyr/issues/27356
.. _`Zephyr issue #38516`: https://github.com/zephyrproject-rtos/zephyr/issues/38516
.. _`Zephyr issue #61033`: https://github.com/zephyrproject-rtos/zephyr/issues/61033
.. _`Zephyr SDK`: https://github.com/zephyrproject-rtos/sdk-ng/releases

.. _`sdk-mcuboot`: https://github.com/nrfconnect/sdk-mcuboot
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,10 @@ Bluetooth samples

* Fixed an interoperability issue with iOS devices by setting the report IDs of HID input and output reports to zero.
MarekPieta marked this conversation as resolved.
Show resolved Hide resolved

* :ref:`peripheral_fast_pair` sample:

* Disabled the :kconfig:option:`CONFIG_BT_SETTINGS_CCC_LAZY_LOADING` Kconfig option as a workaround fix for the `Zephyr issue #61033`_.

Bluetooth mesh samples
----------------------

Expand Down
4 changes: 4 additions & 0 deletions samples/bluetooth/peripheral_fast_pair/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ CONFIG_BT_ADV_PROV_TX_POWER_CORRECTION_VAL=-14
# update which triggers an invalid procedure collision.
CONFIG_BT_AUTO_PHY_UPDATE=n

# Disable CCC Lazy Loading as a workaround fix for the rebond issue that is present because of the
# following Zephyr issue: https://github.com/zephyrproject-rtos/zephyr/issues/61033.
CONFIG_BT_SETTINGS_CCC_LAZY_LOADING=n

CONFIG_BT_ID_MAX=1
CONFIG_BT_MAX_CONN=1
CONFIG_BT_MAX_PAIRED=8
Expand Down
Loading