1# Enable trace level reconfiguration function 2# Must be present before any TRC_ trace level settings 3TraceConf=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. 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 25TRC_SMP=2 26TRC_BTAPP=2 27TRC_BTIF=2 28TRC_BNEP=2 29TRC_PAN=2 30TRC_HID_HOST=2 31TRC_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# PTS AVRCP Test mode 54#PTS_AvrcpTest=true 55 56# SMP Certification Failure Cases 57# 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. 60# Failure modes: 61# 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 69#PTS_SmpFailureCase=0 70 71