mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-21 20:50:55 +01:00
03cb7b21d9
This allows NimBLE options in menuconfig to reduce code size based on the roles selected (scan/advertising/central/peripheral). Significant code space can be saved by removing unnecessary roles for the application.
27 lines
956 B
Text
27 lines
956 B
Text
menu "ESP-NimBLE-CPP configuration"
|
|
|
|
config NIMBLE_CPP_ENABLE_RETURN_CODE_TEXT
|
|
bool "Show NimBLE return codes as text in debug log."
|
|
default "n"
|
|
help
|
|
Enabling this option will display return code values as text
|
|
messages in the debug log. This will use approximately 8kB
|
|
of flash memory.
|
|
|
|
config NIMBLE_CPP_ENABLE_GAP_EVENT_CODE_TEXT
|
|
bool "Show NimBLE gap events as text in debug log."
|
|
default "n"
|
|
help
|
|
Enabling this option will display gap event codes as text
|
|
messages in the debug log. This will use approximately 1kB
|
|
of flash memory.
|
|
|
|
config NIMBLE_CPP_ENABLE_ADVERTISMENT_TYPE_TEXT
|
|
bool "Show advertisment types as text in debug log."
|
|
default "n"
|
|
help
|
|
Enabling this option will display advertisment types recieved
|
|
while scanning as text messages in the debug log.
|
|
This will use approximately 250 bytes of flash memory.
|
|
|
|
endmenu
|