mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24 lines
369 B
Plaintext
24 lines
369 B
Plaintext
|
menu "BT config"
|
||
|
visible if MEMMAP_BT
|
||
|
|
||
|
|
||
|
config BT_ENABLED
|
||
|
bool "Enable low-level BT stack"
|
||
|
depends on MEMMAP_BT
|
||
|
help
|
||
|
This compiles in the low-level BT stack.
|
||
|
|
||
|
config BT_BTLE
|
||
|
bool "Enable BTLE"
|
||
|
depends on BT_ENABLED
|
||
|
help
|
||
|
This compiles BTLE support
|
||
|
|
||
|
config BT_BT
|
||
|
bool "Enable classic BT"
|
||
|
depends on BT_ENABLED
|
||
|
help
|
||
|
This enables classic BT support
|
||
|
|
||
|
endmenu
|