1# Bluetooth GATT Immediate Alert Service 2 3# Copyright (c) 2022 Codecoup 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig BT_IAS 7 bool "Support for GATT Immediate Alert Service [EXPERIMENTAL]" 8 select EXPERIMENTAL 9 10if BT_IAS 11 12choice BT_IAS_SEC_CHOICE 13 prompt "Default permissions used for IAS characteristics" 14 default BT_IAS_SEC_NONE 15 help 16 Default write permissions for IAS characteristic attributes 17 18config BT_IAS_SEC_NONE 19 bool "No security required" 20 21config BT_IAS_SEC_ENC 22 bool "Require encryption for write access" 23 24config BT_IAS_SEC_AUTH 25 bool "Require encryption and authentication for write access" 26 27endchoice #BT_IAS_SEC_CHOICE 28 29endif # BT_IAS 30 31#### Immediate Alert Service Client ################################ 32 33config BT_IAS_CLIENT 34 bool "Immediate Alert Service Client [Experimental]" 35 select BT_GATT_CLIENT 36 select EXPERIMENTAL 37 help 38 This option enables support for Immediate Alert Service Client 39