1 # Enable trace level reconfiguration function 2 # Must be present before any TRC_ trace level settings 3 TraceConf=true 4 5 # 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. 13 TRC_BTM=2 14 TRC_HCI=2 15 TRC_L2CAP=2 16 TRC_RFCOMM=2 17 TRC_OBEX=2 18 TRC_AVCT=2 19 TRC_AVDT=2 20 TRC_AVRC=2 21 TRC_AVDT_SCB=2 22 TRC_AVDT_CCB=2 23 TRC_A2D=2 24 TRC_SDP=2 25 TRC_SMP=2 26 TRC_BTAPP=2 27 TRC_BTIF=2 28 TRC_BNEP=2 29 TRC_PAN=2 30 TRC_HID_HOST=2 31 TRC_HID_DEV=2 32 33 # 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 38 39 # PTS testing helpers 40 41 # Secure connections only mode. 42 # PTS_SecurePairOnly=true 43 44 # Disable LE Connection updates 45 #PTS_DisableConnUpdates=true 46 47 # Disable BR/EDR discovery after LE pairing to avoid cross key derivation errors 48 #PTS_DisableSDPOnLEPair=true 49 50 # SMP Pair options (formatted as hex bytes) auth, io, ikey, rkey, ksize 51 #PTS_SmpOptions=0xD,0x4,0xf,0xf,0x10 52 53 # SMP Certification Failure Cases 54 # Set any of the following SMP error values (from smp_api_types.h) 55 # to induce pairing failues for various PTS SMP test cases. 56 # Setting PTS_SmpFailureCase to 0 means normal operation. 57 # Failure modes: 58 # 59 # SMP_PASSKEY_ENTRY_FAIL = 1 60 # SMP_PAIR_AUTH_FAIL = 3 61 # SMP_CONFIRM_VALUE_ERR = 4 62 # SMP_PAIR_NOT_SUPPORT = 5 63 # SMP_PAIR_FAIL_UNKNOWN = 8 64 # SMP_REPEATED_ATTEMPTS = 9 65 # SMP_NUMERIC_COMPAR_FAIL = 12 66 #PTS_SmpFailureCase=0 67 68