diff options
author | Kausik Sinnaswamy <kausik@broadcom.com> | 2012-04-02 15:04:26 +0530 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-07-14 11:19:14 -0700 |
commit | 84a000f59a48dac41d04da6bf9569258bc0e2cfc (patch) | |
tree | 7552daf852870cf54ce7d6d9e1ad8f1ca83231c5 /conf/bt_stack.conf | |
parent | c01f69a35563261eca49bd2083afd7064790940d (diff) | |
download | external_bluetooth_bluedroid-84a000f59a48dac41d04da6bf9569258bc0e2cfc.zip external_bluetooth_bluedroid-84a000f59a48dac41d04da6bf9569258bc0e2cfc.tar.gz external_bluetooth_bluedroid-84a000f59a48dac41d04da6bf9569258bc0e2cfc.tar.bz2 |
Consolidated patchset for
1) Run-time configuration: configure stack and vendor at run-time using bt_stack.conf and bt_vendor.conf in /etc/bluetooth/
2) Build-time configuration: Auto-generate buildcfg.h header file from the target config bdroid_$(TARGET_DEVICE).txt file
Change-Id: Ieebb71081b7de404eab37f9ff4596d3dc94547a7
Diffstat (limited to 'conf/bt_stack.conf')
-rw-r--r-- | conf/bt_stack.conf | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/conf/bt_stack.conf b/conf/bt_stack.conf new file mode 100644 index 0000000..c64e538 --- /dev/null +++ b/conf/bt_stack.conf @@ -0,0 +1,26 @@ +# Enable trace level reconfiguration function +# Must be present before any TRC_ trace level settings +TraceConf=true + +# Trace level configuration +# BT_TRACE_LEVEL_NONE 0 ( No trace messages to be generated ) +# BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages ) +# BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages ) +# BT_TRACE_LEVEL_API 3 ( API traces ) +# BT_TRACE_LEVEL_EVENT 4 ( Debug messages for events ) +# BT_TRACE_LEVEL_DEBUG 5 ( Full debug messages ) +TRC_BTM=5 +TRC_HCI=5 +TRC_L2CAP=5 +TRC_RFCOMM=5 +TRC_OBEX=5 +TRC_AVCT=5 +TRC_AVDT=5 +TRC_AVRC=5 +TRC_AVDT_SCB=5 +TRC_AVDT_CCB=5 +TRC_A2D=5 +TRC_SDP=5 +TRC_GATT=5 +TRC_SMP=5 +TRC_BTAPP=5 |