mirror of
https://github.com/espressif/esp-idf
synced 2025-03-11 10:09:08 -04:00
C preprocessor is a bit icky, but with ULP we will have 3 possible variables influencing the memory layout and 9 linker scripts is too many!
30 lines
492 B
Plaintext
30 lines
492 B
Plaintext
menu "BT config"
|
|
visible if MEMMAP_BT
|
|
|
|
|
|
config BT_ENABLED
|
|
bool
|
|
depends on ESP32_ENABLE_STACK_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
|
|
|
|
# Memory reserved at start of DRAM for Bluetooth stack
|
|
config BT_RESERVE_DRAM
|
|
hex
|
|
default 0x10000 if MEMMAP_BT
|
|
default 0
|