1#=============================================================================== 2# @brief Kconfig file. 3# Copyright (c) 2020 HiSilicon (Shanghai) Technologies CO., LIMITED. 4#=============================================================================== 5choice 6 prompt "Sample" 7 8config SAMPLE_SUPPORT_BLE_SAMPLE 9 bool "Support BLE Sample." 10 11if SAMPLE_SUPPORT_BLE_SAMPLE 12osource "application/samples/bt/ble/Kconfig" 13endif 14 15config SAMPLE_SUPPORT_SLE_SAMPLE 16 bool "Support SLE Sample." 17endchoice 18 19if SAMPLE_SUPPORT_SLE_SAMPLE 20osource "application/samples/bt/sle/Kconfig" 21endif