2016-08-17 11:08:22 -04:00
|
|
|
menu "BT config"
|
|
|
|
visible if MEMMAP_BT
|
|
|
|
|
|
|
|
|
|
|
|
config BT_ENABLED
|
2016-09-28 01:24:58 -04:00
|
|
|
bool
|
|
|
|
depends on ESP32_ENABLE_STACK_BT
|
|
|
|
help
|
|
|
|
This compiles in the low-level BT stack.
|
2016-08-17 11:08:22 -04:00
|
|
|
|
2016-09-22 06:36:23 -04:00
|
|
|
#config BT_BTLE
|
2016-09-28 01:24:58 -04:00
|
|
|
# bool "Enable BTLE"
|
|
|
|
# depends on BT_ENABLED
|
|
|
|
# help
|
|
|
|
# This compiles BTLE support
|
2016-09-22 06:36:23 -04:00
|
|
|
#
|
|
|
|
#config BT_BT
|
2016-09-28 01:24:58 -04:00
|
|
|
# bool "Enable classic BT"
|
|
|
|
# depends on BT_ENABLED
|
|
|
|
# help
|
|
|
|
# This enables classic BT support
|
2016-08-17 11:08:22 -04:00
|
|
|
|
|
|
|
endmenu
|
2016-09-20 21:04:16 -04:00
|
|
|
|
|
|
|
# Memory reserved at start of DRAM for Bluetooth stack
|
|
|
|
config BT_RESERVE_DRAM
|
|
|
|
hex
|
2016-09-28 01:24:58 -04:00
|
|
|
default 0x10000 if MEMMAP_BT
|
|
|
|
default 0
|