]> granicus.if.org Git - esp-idf/commitdiff
component/bt: add constraint in Kconfig to enable SMP_ENABLE when using classic BT
authorwangmengyang <wangmengyang@espressif.com>
Thu, 15 Jun 2017 07:48:20 +0000 (15:48 +0800)
committerwangmengyang <wangmengyang@espressif.com>
Thu, 15 Jun 2017 12:06:49 +0000 (20:06 +0800)
1. For now, some security related functions used in classic Bluetooth are controlled by "SMP_ENABLE". This commit fixes the dependency.
2. The two options, "CLASSIC_BT_ENABLED" and "SMP_ENABLED" The two options will be decoupled in the future.

components/bt/Kconfig

index 33dc944456841fdee1dc516dae585766f34afe3c..fd805bd7f691c5a8afd19edb6aad59b0368e890e 100644 (file)
@@ -28,6 +28,8 @@ config CLASSIC_BT_ENABLED
     bool "Classic Bluetooth"
     depends on BLUEDROID_ENABLED
     default n
+    help
+        For now this option needs "SMP_ENABLE" to be set to yes
 
 config BT_DRAM_RELEASE
     bool "Release DRAM from Classic BT controller"
@@ -52,8 +54,8 @@ config GATTC_ENABLE
     help
         This option can be close when the app work only on gatt server mode
 
-config SMP_ENABLE
-   bool "Include BT security module(SMP)"
+config BLE_SMP_ENABLE
+   bool "Include BLE security module(SMP)"
    depends on BLUEDROID_ENABLED
    default y
    help
@@ -112,6 +114,11 @@ config BT_HCI_UART_BAUDRATE
     help
         UART Baudrate for HCI. Please use standard baudrate.
 
+config SMP_ENABLE
+   bool
+   depends on BLUEDROID_ENABLED
+   default CLASSIC_BT_ENABLED || BLE_SMP_ENABLE
+   
 # Memory reserved at start of DRAM for Bluetooth stack
 config BT_RESERVE_DRAM
     hex