From 44eda51a93345b4db15a5ee792e728c1f6d74847 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 26 May 2015 17:20:05 -0400 Subject: [PATCH] Update Bluetooth options Change-Id: If01bf6b7cc1d195932b5a153b7aa9b96241b2311 Signed-off-by: Anas Nashif --- net/bluetooth/Kconfig | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig index 4258b6a4ff6..e2ef36088ea 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig @@ -37,10 +37,31 @@ config BLUETOOTH help This option enables Bluetooth Low Energy support. +config BLUETOOTH_MAX_CONN + int + prompt "Maximum number of simultaneous connections" + depends on BLUETOOTH + default 1 + range 1 16 + help + Maximum number of simultaneous Bluetooth connections + supported. The minimum (and default) number is 1. + +config BLUETOOTH_MAX_PAIRED + int + prompt "Maximum number of paired devices" + depends on BLUETOOTH + default 1 + range 1 32 + help + Maximum number of paired Bluetooth devices. The minimum (and + default) number is 1. + config BLUETOOTH_DEBUG bool prompt "Bluetooth LE debug support" depends on BLUETOOTH + select STDOUT_CONSOLE default n help This option enables Bluetooth debug going to standard @@ -99,3 +120,11 @@ config BLUETOOTH_DEBUG_ATT This option enables debug support for the Bluetooth Attribute Protocol (ATT). +config BLUETOOTH_DEBUG_GATT + bool + prompt "Bluetooth Generic Attribute Profile (GATT) debug" + depends on BLUETOOTH_DEBUG + default n + help + This option enables debug support for the Bluetooth + Generic Attribute Profile (GATT).