1#=============================================================================== 2# @brief Kconfig file. 3# Copyright (c) 2020 HiSilicon (Shanghai) Technologies CO., LIMITED. 4#=============================================================================== 5config AT_BLE 6 bool 7 prompt "Support AT BLE function." 8 default y 9 10if AT_BLE 11menu "AT_BLE" 12 comment "Config bluetooth host AT BLE." 13 osource "protocol/bt/host/bt/dft/Kconfig" 14endmenu 15endif 16 17config AT_GLE 18 bool 19 prompt "Support AT GLE function." 20 default y 21 22if AT_GLE 23menu "AT_GLE" 24 comment "Config bluetooth host AT GLE." 25 osource "protocol/bt/host/gle/dft/Kconfig" 26endmenu 27endif 28 29menu "FEATURE_GLE" 30 comment "Config bluetooth host GLE feature." 31 osource "protocol/bt/host/gle/Kconfig" 32endmenu 33