forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kconfig: Organization of Ksymbols for bluetooth.
This commit organizes the bluetooth Ksymbols in: - Driver symbols at drivers/bluetooth/Kconfig - Stack symbols at net/bluetooth/Kconfig Change-Id: I8ebadeb8ac7f8a769d7620e4e44077a05915dc86 Signed-off-by: Juan Manuel Cruz <[email protected]>
- Loading branch information
Showing
5 changed files
with
31 additions
and
28 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 |
---|---|---|
|
@@ -105,6 +105,8 @@ config COMPILER_OPT | |
|
||
endmenu | ||
|
||
source "net/Kconfig" | ||
|
||
source "drivers/Kconfig" | ||
|
||
config EXPERIMENTAL | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
source "net/bluetooth/Kconfig" |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
config BLUETOOTH | ||
bool | ||
prompt "Bluetooth LE support [EXPERIMENTAL]" | ||
default n | ||
help | ||
This option enables Bluetooth Low Energy support. | ||
|
||
config BLUETOOTH_DEBUG | ||
bool | ||
prompt "Bluetooth LE debug support" | ||
depends on BLUETOOTH | ||
default n | ||
help | ||
This option enables Bluetooth debug going to standard | ||
serial console. | ||
|
||
config BLUETOOTH_DEBUG_HCI_CORE | ||
bool | ||
prompt "Bluetooth HCI core debug" | ||
depends on BLUETOOTH_DEBUG | ||
default n | ||
help | ||
This option enables debug support for Bluetooth HCI | ||
core |