1# Bluetooth GATT Battery service 2 3# Copyright (c) 2018 Nordic Semiconductor ASA 4# SPDX-License-Identifier: Apache-2.0 5 6config BT_BAS 7 bool "GATT Battery service" 8 9config BT_BAS_BLS 10 bool "Battery Level Status" 11 help 12 Enable this option to include Battery Level Status Characteristic. 13 14if BT_BAS_BLS 15 16config BT_BAS_BLS_IDENTIFIER_PRESENT 17 bool "Battery Level Identifier Present" 18 help 19 Enable this option if the Battery Level Identifier is present. 20 21config BT_BAS_BLS_BATTERY_LEVEL_PRESENT 22 bool "Battery Level Present" 23 help 24 Enable this option if the Battery Level is present. 25 26config BT_BAS_BLS_ADDITIONAL_STATUS_PRESENT 27 bool "Additional Battery Status Present" 28 help 29 Enable this option if Additional Battery Status information is present. 30 31config BT_BAS_BCS 32 bool "Battery Critical Status" 33 help 34 Enable this option to include Battery Critical Status Characteristic. 35endif 36