blob: 95d0ee043a6072b99f9276f7945e87dae1543d0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# UART device port where Bluetooth controller is attached
UartPort = /dev/s3c2410_serial0
# Firmware patch file location
FwPatchFilePath = /vendor/firmware/
# Enable/Disable debug mode of libbt-vendor.so library
# The main key turns on/off debug modes of the whole library
# valid value : true, false
EnableDebug = true
# The sub-key to enable/disable BtSnoop logging function
# The key is masked off if EnableDebug is false
# valid value : true, false
BtSnoopLogOutput = false
# BtSnoop log output file
BtSnoopFileName = /data/misc/bluedroid/btsnoop_hci.log
# The sub-key to enable/disable trace output of main vendor lib module
# The key is masked off if EnableDebug is false
# valid value : true, false
VndDebug = false
# The sub-key to enable/disable trace output of hardware.c module
# The key is masked off if EnableDebug is false
# valid value : true, false
HwDebug = false
# The sub-key to enable/disable trace output of userial module
# The key is masked off if EnableDebug is false
# valid value : true, false
UserialDebug = false
# The sub-key to enable/disable trace output of Transport (e.g. H4) module
# The key is masked off if EnableDebug is false
# valid value : true, false
HciDebug = false
# The sub-key to enable/disable trace output of upio module
# The key is masked off if EnableDebug is false
# valid value : true, false
UpioDebug = false
# The sub-key to enable/disable debugging in BtSnoop module
# The key is masked off if EnableDebug is false
# valid value : true, false
BtSnoopDebug = false
|