2015-05-21 00:40:39 +08:00
|
|
|
# Kconfig - Bluetooth LE driver configuration options
|
2015-05-11 10:52:56 +08:00
|
|
|
|
|
|
|
#
|
2016-06-10 17:10:18 +08:00
|
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
2015-05-11 10:52:56 +08:00
|
|
|
#
|
2015-10-07 00:00:37 +08:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2015-05-11 10:52:56 +08:00
|
|
|
#
|
2015-10-07 00:00:37 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2015-05-11 10:52:56 +08:00
|
|
|
#
|
2015-10-07 00:00:37 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2015-05-11 10:52:56 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bluetooth options
|
|
|
|
#
|
2016-03-17 04:05:56 +08:00
|
|
|
|
|
|
|
if BLUETOOTH
|
|
|
|
|
|
|
|
menu "Bluetooth Drivers"
|
|
|
|
|
2016-11-09 18:23:21 +08:00
|
|
|
if BLUETOOTH_HCI
|
2016-10-27 21:55:01 +08:00
|
|
|
source "drivers/bluetooth/hci/Kconfig"
|
2016-11-09 18:23:21 +08:00
|
|
|
endif
|
2016-03-17 04:05:56 +08:00
|
|
|
|
2016-11-09 18:23:21 +08:00
|
|
|
if BLUETOOTH_CUSTOM
|
2016-04-05 19:01:16 +08:00
|
|
|
source "drivers/bluetooth/nble/Kconfig"
|
2016-11-09 18:23:21 +08:00
|
|
|
endif
|
2016-03-17 04:05:56 +08:00
|
|
|
|
2016-04-05 14:42:30 +08:00
|
|
|
config BLUETOOTH_NRF51_PM
|
2016-04-07 15:50:52 +08:00
|
|
|
bool "nRF51 Power Management [EXPERIMENTAL]"
|
2016-04-05 14:42:30 +08:00
|
|
|
depends on BLUETOOTH_H4 || NBLE
|
|
|
|
help
|
|
|
|
Power Management support for Nordic BLE nRF51 chip. Allows to enable,
|
|
|
|
disable the chip and handle wakeups.
|
|
|
|
|
2016-04-18 16:45:45 +08:00
|
|
|
config BLUETOOTH_WAIT_NOP
|
|
|
|
bool "Wait for \"NOP\" Command Complete event during init"
|
2016-11-09 18:23:21 +08:00
|
|
|
depends on BLUETOOTH_HCI
|
2016-04-18 16:45:45 +08: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 10:52:56 +08:00
|
|
|
endmenu
|
2016-03-17 04:05:56 +08:00
|
|
|
|
|
|
|
endif # BLUETOOTH
|