Skip to content

Commit

Permalink
manifest: update zephyr to bring Bluetooth DIS Kconfig changes
Browse files Browse the repository at this point in the history
Updated the Zephyr revision in the manifest to bring the Bluetooth
Device Information Service (DIS) Kconfig changes that control
the behaviour of the Model Number and Manufacturer Name GATT
characteristics.

Signed-off-by: Kamil Piszczek <[email protected]>
  • Loading branch information
kapi-no authored and rlubos committed Feb 17, 2025
1 parent 27c5b09 commit c736168
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 10 deletions.
16 changes: 14 additions & 2 deletions applications/nrf_desktop/Kconfig.ble
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,25 @@ config BT_GATT_UUID16_POOL_SIZE

if BT_DIS

config BT_DIS_MANUF
config BT_DIS_MANUF_NAME
default y
help
nRF Desktop enables the Manufacturer Name String characteristic as
part of the DIS configuration.

config BT_DIS_MANUF_NAME_STR
default DESKTOP_DEVICE_MANUFACTURER
help
nRF Desktop defines common HID device identification values
and passes them as defaults to the Bluetooth DIS configuration.

config BT_DIS_MODEL
config BT_DIS_MODEL_NUMBER
default y
help
nRF Desktop enables the Model Number String characteristic as
part of the DIS configuration.

config BT_DIS_MODEL_NUMBER_STR
default DESKTOP_DEVICE_PRODUCT
help
nRF Desktop defines common HID device identification values
Expand Down
3 changes: 2 additions & 1 deletion samples/bluetooth/central_nfc_pairing/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ CONFIG_BT_SCAN_ADDRESS_CNT=1
CONFIG_BT_DEVICE_NAME="Nordic_NFC_pairing"

CONFIG_BT_DIS=y
CONFIG_BT_DIS_MANUF_NAME=y
CONFIG_BT_DIS_MANUF_NAME_STR="NordicSemiconductor"
CONFIG_BT_DIS_PNP=y
CONFIG_BT_DIS_MANUF="NordicSemiconductor"
CONFIG_BT_DIS_PNP_VID_SRC=2
CONFIG_BT_DIS_PNP_VID=0x1915
CONFIG_BT_DIS_PNP_PID=0xEEEC
Expand Down
3 changes: 2 additions & 1 deletion samples/bluetooth/fast_pair/input_device/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ CONFIG_BT_CONN_CTX=y
CONFIG_BT_BAS=y

# Fill DIS characteristic to comply with HID over GATT profile
CONFIG_BT_DIS_MANUF="NordicSemiconductor"
CONFIG_BT_DIS_MANUF_NAME=y
CONFIG_BT_DIS_MANUF_NAME_STR="NordicSemiconductor"
CONFIG_BT_DIS_PNP=y
CONFIG_BT_DIS_PNP_VID_SRC=2
CONFIG_BT_DIS_PNP_VID=0x1915
Expand Down
3 changes: 2 additions & 1 deletion samples/bluetooth/multiple_adv_sets/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ CONFIG_BT_EXT_ADV=y
CONFIG_BT_EXT_ADV_MAX_ADV_SET=2

CONFIG_BT_DIS=y
CONFIG_BT_DIS_MANUF_NAME=y
CONFIG_BT_DIS_MANUF_NAME_STR="Nordic Semiconductor ASA"
CONFIG_BT_DIS_PNP=y
CONFIG_BT_DIS_MANUF="Nordic Semiconductor ASA"
CONFIG_BT_DIS_PNP_VID_SRC=2
CONFIG_BT_DIS_PNP_VID=0x1915
CONFIG_BT_DIS_PNP_PID=0xEEF1
Expand Down
3 changes: 2 additions & 1 deletion samples/bluetooth/peripheral_hids_keyboard/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ CONFIG_BT_GATT_CHRC_POOL_SIZE=20
CONFIG_BT_CONN_CTX=y

CONFIG_BT_DIS=y
CONFIG_BT_DIS_MANUF_NAME=y
CONFIG_BT_DIS_MANUF_NAME_STR="NordicSemiconductor"
CONFIG_BT_DIS_PNP=y
CONFIG_BT_DIS_MANUF="NordicSemiconductor"
CONFIG_BT_DIS_PNP_VID_SRC=2
CONFIG_BT_DIS_PNP_VID=0x1915
CONFIG_BT_DIS_PNP_PID=0xEEEF
Expand Down
3 changes: 2 additions & 1 deletion samples/bluetooth/peripheral_hids_mouse/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ CONFIG_BT_GATT_CHRC_POOL_SIZE=20
CONFIG_BT_CONN_CTX=y

CONFIG_BT_DIS=y
CONFIG_BT_DIS_MANUF_NAME=y
CONFIG_BT_DIS_MANUF_NAME_STR="NordicSemiconductor"
CONFIG_BT_DIS_PNP=y
CONFIG_BT_DIS_MANUF="NordicSemiconductor"
CONFIG_BT_DIS_PNP_VID_SRC=2
CONFIG_BT_DIS_PNP_VID=0x1915
CONFIG_BT_DIS_PNP_PID=0xEEEE
Expand Down
3 changes: 2 additions & 1 deletion samples/bluetooth/peripheral_hids_mouse/prj_bt_rpc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ CONFIG_BT_GATT_CHRC_POOL_SIZE=20
CONFIG_BT_CONN_CTX=y

CONFIG_BT_DIS=y
CONFIG_BT_DIS_MANUF_NAME=y
CONFIG_BT_DIS_MANUF_NAME_STR="NordicSemiconductor"
CONFIG_BT_DIS_PNP=y
CONFIG_BT_DIS_MANUF="NordicSemiconductor"
CONFIG_BT_DIS_PNP_VID_SRC=2
CONFIG_BT_DIS_PNP_VID=0x1915
CONFIG_BT_DIS_PNP_PID=0xEEEE
Expand Down
3 changes: 2 additions & 1 deletion samples/bluetooth/peripheral_nfc_pairing/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ CONFIG_BT_PERIPHERAL=y
CONFIG_BT_DEVICE_NAME="Nordic_NFC_pairing"

CONFIG_BT_DIS=y
CONFIG_BT_DIS_MANUF_NAME=y
CONFIG_BT_DIS_MANUF_NAME_STR="NordicSemiconductor"
CONFIG_BT_DIS_PNP=y
CONFIG_BT_DIS_MANUF="NordicSemiconductor"
CONFIG_BT_DIS_PNP_VID_SRC=2
CONFIG_BT_DIS_PNP_VID=0x1915
CONFIG_BT_DIS_PNP_PID=0xEEEB
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: 776b31e3ebc43993e2e7c2043a2bf1a5beb37815
revision: 5605c8c0d3855bc3f50c7a9b9ccd5c32d99b4779
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand Down

0 comments on commit c736168

Please sign in to comment.