forked from espressif/esp-idf
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: Simplify WiFi & Bluetooth config options
Removes redundant menu options, splits WiFi configuration out from generic ESP32 configuration.
- Loading branch information
1 parent
a547918
commit 2e78b39
Showing
8 changed files
with
145 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,26 @@ | ||
menu "BT config" | ||
visible if MEMMAP_BT | ||
|
||
menu "Bluetooth" | ||
|
||
config BT_ENABLED | ||
bool | ||
depends on ESP32_ENABLE_STACK_BT | ||
help | ||
This compiles in the low-level BT stack. | ||
bool "Enable Bluetooth stack" | ||
|
||
config BTC_TASK_STACK_SIZE | ||
int "BT event (callback to application) task stack size" | ||
int "Bluetooth event (callback to application) task stack size" | ||
depends on BT_ENABLED | ||
default 3072 | ||
help | ||
This select btc task stack size | ||
|
||
config BLUEDROID_MEM_DEBUG | ||
bool "Bluedroid memory debug" | ||
default no | ||
depends on BT_ENABLED | ||
default n | ||
help | ||
Bluedroid memory debug | ||
|
||
#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 0x10000 if BT_ENABLED | ||
default 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.