This commit moves the BLE GATT Device Information service from /samples/bluetooth/gatt to /subsys/bluetooth/services and adds a Kconfig entry to enable and configure the service; when enabled, it will register itself automatically. Signed-off-by: Emanuele Di Santo <emdi@nordicsemi.no> Signed-off-by: Radoslaw Koppel <radoslaw.koppel@nordicsemi.no>
18 lines
225 B
Plaintext
18 lines
225 B
Plaintext
# Kconfig - GATT Services
|
|
#
|
|
# Copyright (c) 2018 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if BT_CONN
|
|
|
|
menu "GATT Services"
|
|
|
|
source "subsys/bluetooth/services/Kconfig.dis"
|
|
|
|
endmenu
|
|
|
|
endif # BT_CONN
|
|
|