1# Bluetooth GATT Heart Rate service
2
3# Copyright (c) 2018 Nordic Semiconductor ASA
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig BT_HRS
7	bool "GATT Heart Rate service"
8
9if BT_HRS
10
11choice BT_HRS_DEFAULT_PERM
12	prompt "Default permissions used for HRS characteristics"
13	default BT_HRS_DEFAULT_PERM_RW
14	help
15	  Default permissions for HRS characteristic attributes
16	  used when no permission is set for the report.
17	  Used also for boot reports.
18
19config BT_HRS_DEFAULT_PERM_RW
20	bool "Read and write allowed"
21
22config BT_HRS_DEFAULT_PERM_RW_ENCRYPT
23	bool "Require encryption for access"
24
25config BT_HRS_DEFAULT_PERM_RW_AUTHEN
26	bool "Require encryption and authentication for access"
27
28endchoice
29
30endif # BT_HRS
31