1menu "BLE" 2 config BT 3 depends on BLUETOOTH 4 bool "Enable Bluetooth Classic" 5 default n 6 7 config BLE 8 depends on BLUETOOTH 9 bool "Enable Bluetooth Low Energy" 10 default y 11 12 choice BLE_STACK 13 prompt "BLE Version" 14 depends on BLE 15 default BLE_5_X 16 17 config BLE_5_X 18 bool "BLE 5.X" 19 config BLE_4_2 20 bool "BLE 4.2" 21 config BTDM_5_2 22 bool "BTDM 5.2" 23 config BTDM_5_2_MINDTREE 24 bool "BTDM 5.2 Mindtree Host" 25 endchoice 26endmenu 27