2015-05-20 18:40:39 +02:00
|
|
|
# Kconfig - Bluetooth LE driver configuration options
|
2015-05-11 04:52:56 +02:00
|
|
|
|
|
|
|
#
|
2016-06-10 11:10:18 +02:00
|
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
2015-05-11 04:52:56 +02:00
|
|
|
#
|
2017-01-19 02:01:01 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-05-11 04:52:56 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bluetooth options
|
|
|
|
#
|
2016-03-16 21:05:56 +01:00
|
|
|
|
|
|
|
if BLUETOOTH
|
|
|
|
|
|
|
|
menu "Bluetooth Drivers"
|
|
|
|
|
2016-11-09 11:23:21 +01:00
|
|
|
if BLUETOOTH_HCI
|
2016-10-27 15:55:01 +02:00
|
|
|
source "drivers/bluetooth/hci/Kconfig"
|
2016-11-09 11:23:21 +01:00
|
|
|
endif
|
2016-03-16 21:05:56 +01:00
|
|
|
|
2016-11-09 11:23:21 +01:00
|
|
|
if BLUETOOTH_CUSTOM
|
2017-05-25 03:09:15 +02:00
|
|
|
# Insert here any custom (non-HCI) offload drives
|
2016-11-09 11:23:21 +01:00
|
|
|
endif
|
2016-03-16 21:05:56 +01:00
|
|
|
|
2016-04-05 08:42:30 +02:00
|
|
|
config BLUETOOTH_NRF51_PM
|
2016-04-07 09:50:52 +02:00
|
|
|
bool "nRF51 Power Management [EXPERIMENTAL]"
|
2017-05-25 03:09:15 +02:00
|
|
|
depends on BLUETOOTH_H4
|
2016-04-05 08:42:30 +02:00
|
|
|
help
|
|
|
|
Power Management support for Nordic BLE nRF51 chip. Allows to enable,
|
|
|
|
disable the chip and handle wakeups.
|
|
|
|
|
2016-04-18 10:45:45 +02:00
|
|
|
config BLUETOOTH_WAIT_NOP
|
|
|
|
bool "Wait for \"NOP\" Command Complete event during init"
|
2016-11-09 11:23:21 +01:00
|
|
|
depends on BLUETOOTH_HCI
|
2016-04-18 10:45:45 +02:00
|
|
|
help
|
|
|
|
Some controllers emit a Command Complete event for the NOP
|
|
|
|
opcode to indicate that they're ready to receive commands.
|
|
|
|
This option should be selected if the controller used
|
|
|
|
exhibits such behavior.
|
|
|
|
|
2015-05-11 04:52:56 +02:00
|
|
|
endmenu
|
2016-03-16 21:05:56 +01:00
|
|
|
|
|
|
|
endif # BLUETOOTH
|