zephyr/subsys/bluetooth/services/bas/Kconfig.bas
Nithin Ramesh Myliattil baa5683e59 bluetooth: BAS: add battery level status char to bas service
Added the battery level status char to bas service
as per bas_1.1 spec. Added BSIM test for BAS service
to test the NTF/INDs of BAS characteristics.

Signed-off-by: Nithin Ramesh Myliattil <niym@demant.com>
2024-08-20 18:59:14 -04:00

31 lines
750 B
QBasic

# Bluetooth GATT Battery service
# Copyright (c) 2018 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config BT_BAS
bool "GATT Battery service"
config BT_BAS_BLS
bool "Battery Level Status"
help
Enable this option to include Battery Level Status Characteristic.
if BT_BAS_BLS
config BT_BAS_BLS_IDENTIFIER_PRESENT
bool "Battery Level Identifier Present"
help
Enable this option if the Battery Level Identifier is present.
config BT_BAS_BLS_BATTERY_LEVEL_PRESENT
bool "Battery Level Present"
help
Enable this option if the Battery Level is present.
config BT_BAS_BLS_ADDITIONAL_STATUS_PRESENT
bool "Additional Battery Status Present"
help
Enable this option if Additional Battery Status information is present.
endif