1#=============================================================================== 2# @brief Kconfig file. 3# Copyright (c) 2020 HiSilicon (Shanghai) Technologies CO., LIMITED. 4#=============================================================================== 5 6config ENABLE_BT_SAMPLE 7 bool 8 prompt "Enable the Sample of BT." 9 default n 10 depends on SAMPLE_ENABLE 11 help 12 This option means enable the sample of BT. 13 14if ENABLE_BT_SAMPLE 15osource "application/samples/bt/Kconfig" 16endif 17 18config ENABLE_PERIPHERAL_SAMPLE 19 bool 20 prompt "Enable the Sample of peripheral." 21 default n 22 depends on SAMPLE_ENABLE 23 help 24 This option means enable the sample of peripheral. 25 26if ENABLE_PERIPHERAL_SAMPLE 27osource "application/samples/peripheral/Kconfig" 28endif 29 30config ENABLE_WIFI_SAMPLE 31 bool 32 prompt "Enable the Sample of WIFI." 33 default n 34 depends on SAMPLE_ENABLE 35 help 36 This option means enable the sample of WIFI. 37 38if ENABLE_WIFI_SAMPLE 39osource "application/samples/wifi/Kconfig" 40endif 41 42config ENABLE_PRODUCTS_SAMPLE 43 bool 44 prompt "Enable the Sample of products." 45 default n 46 depends on SAMPLE_ENABLE 47 help 48 This option means enable the sample of products. 49 50if ENABLE_PRODUCTS_SAMPLE 51osource "application/samples/products/Kconfig" 52endif 53 54config ENABLE_RADAR_SAMPLE 55 bool 56 prompt "Enable the Sample of RADAR." 57 default n 58 depends on SAMPLE_ENABLE 59 help 60 This option means enable the sample of RADAR. 61 62if ENABLE_RADAR_SAMPLE 63osource "application/samples/radar/Kconfig" 64endif 65 66config ENABLE_NFC_SAMPLE 67 bool 68 prompt "Enable the Sample of NFC." 69 default n 70 depends on SAMPLE_ENABLE 71 help 72 This option means enable the sample of NFC. 73 74if ENABLE_NFC_SAMPLE 75osource "application/samples/nfc/Kconfig" 76endif 77