blob: d1e77564089f78d50f969b7930307f495daf79f6 [file] [log] [blame]
Myles Watsondde03b22016-12-02 12:44:57 -08001# Enable trace level reconfiguration function
2# Must be present before any TRC_ trace level settings
3TraceConf=true
The Android Open Source Project5738f832012-12-12 16:00:35 -08004
Myles Watsondde03b22016-12-02 12:44:57 -08005# Trace level configuration
6# BT_TRACE_LEVEL_NONE 0 ( No trace messages to be generated )
7# BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages )
8# BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages )
9# BT_TRACE_LEVEL_API 3 ( API traces )
10# BT_TRACE_LEVEL_EVENT 4 ( Debug messages for events )
11# BT_TRACE_LEVEL_DEBUG 5 ( Full debug messages )
12# BT_TRACE_LEVEL_VERBOSE 6 ( Verbose messages ) - Currently supported for TRC_BTAPP only.
13TRC_BTM=2
14TRC_HCI=2
15TRC_L2CAP=2
16TRC_RFCOMM=2
17TRC_OBEX=2
18TRC_AVCT=2
19TRC_AVDT=2
20TRC_AVRC=2
21TRC_AVDT_SCB=2
22TRC_AVDT_CCB=2
23TRC_A2D=2
24TRC_SDP=2
Myles Watsondde03b22016-12-02 12:44:57 -080025TRC_SMP=2
26TRC_BTAPP=2
27TRC_BTIF=2
Myles Watsondde03b22016-12-02 12:44:57 -080028TRC_BNEP=2
29TRC_PAN=2
Hemant Gupta8843cc82014-04-18 12:34:55 +053030TRC_HID_HOST=2
31TRC_HID_DEV=2
Nitin Aroraa0ee0f82016-03-11 12:26:51 -080032
Myles Watsondde03b22016-12-02 12:44:57 -080033# This is Log configuration for new C++ code using LOG() macros.
34# See libchrome/base/logging.h for description on how to configure your logs.
35# sample configuration:
36#LoggingV=--v=0
37#LoggingVModule=--vmodule=*/btm/*=1,btm_ble_multi*=2,btif_*=1
Jakub Pawlowski75b83662016-09-27 18:24:59 -070038
Nitin Arora0bd0c8f2016-03-15 15:00:36 -070039# PTS testing helpers
Nitin Aroraa0ee0f82016-03-11 12:26:51 -080040
41# Secure connections only mode.
42# PTS_SecurePairOnly=true
Nitin Arora36ad41b2015-06-10 17:10:57 -070043
44# Disable LE Connection updates
45#PTS_DisableConnUpdates=true
Nitin Arora4cdb0e52016-03-10 18:27:24 -080046
47# Disable BR/EDR discovery after LE pairing to avoid cross key derivation errors
48#PTS_DisableSDPOnLEPair=true
Nitin Arora2aa2b802016-03-11 16:37:51 -080049
50# SMP Pair options (formatted as hex bytes) auth, io, ikey, rkey, ksize
51#PTS_SmpOptions=0xD,0x4,0xf,0xf,0x10
Nitin Arora0bd0c8f2016-03-15 15:00:36 -070052
tedwang494dcc52018-05-16 19:51:26 +080053# PTS AVRCP Test mode
54#PTS_AvrcpTest=true
55
Nitin Arora0bd0c8f2016-03-15 15:00:36 -070056# SMP Certification Failure Cases
ravishankar srivatsafd102ca2017-05-04 10:13:58 +053057# Set any of the following SMP error values (from smp_api_types.h)
58# to induce pairing failues for various PTS SMP test cases.
59# Setting PTS_SmpFailureCase to 0 means normal operation.
Nitin Arora0bd0c8f2016-03-15 15:00:36 -070060# Failure modes:
ravishankar srivatsafd102ca2017-05-04 10:13:58 +053061#
62# SMP_PASSKEY_ENTRY_FAIL = 1
63# SMP_PAIR_AUTH_FAIL = 3
64# SMP_CONFIRM_VALUE_ERR = 4
65# SMP_PAIR_NOT_SUPPORT = 5
66# SMP_PAIR_FAIL_UNKNOWN = 8
67# SMP_REPEATED_ATTEMPTS = 9
68# SMP_NUMERIC_COMPAR_FAIL = 12
Nitin Arora0bd0c8f2016-03-15 15:00:36 -070069#PTS_SmpFailureCase=0
70