bt_stack.conf 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # Enable trace level reconfiguration function
  2. # Must be present before any TRC_ trace level settings
  3. TraceConf=true
  4. # Trace level configuration
  5. # BT_TRACE_LEVEL_NONE 0 ( No trace messages to be generated )
  6. # BT_TRACE_LEVEL_ERROR 1 ( Error condition trace messages )
  7. # BT_TRACE_LEVEL_WARNING 2 ( Warning condition trace messages )
  8. # BT_TRACE_LEVEL_API 3 ( API traces )
  9. # BT_TRACE_LEVEL_EVENT 4 ( Debug messages for events )
  10. # BT_TRACE_LEVEL_DEBUG 5 ( Full debug messages )
  11. # BT_TRACE_LEVEL_VERBOSE 6 ( Verbose messages ) - Currently supported for TRC_BTAPP only.
  12. TRC_BTM=2
  13. TRC_HCI=2
  14. TRC_L2CAP=2
  15. TRC_RFCOMM=2
  16. TRC_OBEX=2
  17. TRC_AVCT=2
  18. TRC_AVDT=2
  19. TRC_AVRC=2
  20. TRC_AVDT_SCB=2
  21. TRC_AVDT_CCB=2
  22. TRC_A2D=2
  23. TRC_SDP=2
  24. TRC_SMP=2
  25. TRC_BTAPP=2
  26. TRC_BTIF=2
  27. TRC_BNEP=2
  28. TRC_PAN=2
  29. TRC_HID_HOST=2
  30. TRC_HID_DEV=2
  31. # This is Log configuration for new C++ code using LOG() macros.
  32. # See libchrome/base/logging.h for description on how to configure your logs.
  33. # sample configuration:
  34. #LoggingV=--v=0
  35. #LoggingVModule=--vmodule=*/btm/*=1,btm_ble_multi*=2,btif_*=1
  36. # PTS testing helpers
  37. # Secure connections only mode.
  38. # PTS_SecurePairOnly=true
  39. # Disable LE Connection updates
  40. #PTS_DisableConnUpdates=true
  41. # Disable BR/EDR discovery after LE pairing to avoid cross key derivation errors
  42. #PTS_DisableSDPOnLEPair=true
  43. # SMP Pair options (formatted as hex bytes) auth, io, ikey, rkey, ksize
  44. #PTS_SmpOptions=0xD,0x4,0xf,0xf,0x10
  45. # PTS AVRCP Test mode
  46. #PTS_AvrcpTest=true
  47. # SMP Certification Failure Cases
  48. # Set any of the following SMP error values (from smp_api_types.h)
  49. # to induce pairing failues for various PTS SMP test cases.
  50. # Setting PTS_SmpFailureCase to 0 means normal operation.
  51. # Failure modes:
  52. #
  53. # SMP_PASSKEY_ENTRY_FAIL = 1
  54. # SMP_PAIR_AUTH_FAIL = 3
  55. # SMP_CONFIRM_VALUE_ERR = 4
  56. # SMP_PAIR_NOT_SUPPORT = 5
  57. # SMP_PAIR_FAIL_UNKNOWN = 8
  58. # SMP_REPEATED_ATTEMPTS = 9
  59. # SMP_NUMERIC_COMPAR_FAIL = 12
  60. #PTS_SmpFailureCase=0