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_GATT=2 26TRC_SMP=2 27TRC_BTAPP=2 28TRC_BTIF=2 29TRC_GAP=2 30TRC_BNEP=2 31TRC_PAN=2 32TRC_HID_HOST=2 33TRC_HID_DEV=2 34 35# This is Log configuration for new C++ code using LOG() macros. 36# See libchrome/base/logging.h for description on how to configure your logs. 37# sample configuration: 38#LoggingV=--v=0 39#LoggingVModule=--vmodule=*/btm/*=1,btm_ble_multi*=2,btif_*=1 40 41# PTS testing helpers 42 43# Secure connections only mode. 44# PTS_SecurePairOnly=true 45 46# Disable LE Connection updates 47#PTS_DisableConnUpdates=true 48 49# Disable BR/EDR discovery after LE pairing to avoid cross key derivation errors 50#PTS_DisableSDPOnLEPair=true 51 52# SMP Pair options (formatted as hex bytes) auth, io, ikey, rkey, ksize 53#PTS_SmpOptions=0xD,0x4,0xf,0xf,0x10 54 55# SMP Certification Failure Cases 56# Fail case number range from 1 to 9 will set up remote device for test 57# case execution. Setting PTS_SmpFailureCase to 0 means normal operation. 58# Failure modes: 59# 1 = SMP_CONFIRM_VALUE_ERR 60# 2 = SMP_PAIR_AUTH_FAIL 61# 3 = SMP_PAIR_FAIL_UNKNOWN 62# 4 = SMP_PAIR_NOT_SUPPORT 63# 5 = SMP_PASSKEY_ENTRY_FAIL 64# 6 = SMP_REPEATED_ATTEMPTS 65# 7 = PIN generation failure? 66# 8 = SMP_PASSKEY_ENTRY_FAIL 67# 9 = SMP_NUMERIC_COMPAR_FAIL; 68#PTS_SmpFailureCase=0 69 70