• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[General]
2
3# List of plugins that should not be loaded on bluetoothd startup
4#DisablePlugins = network,input
5
6# Default adaper name
7# %h - substituted for hostname
8# %d - substituted for adapter id
9Name = "Bluez"
10
11# Default device class. Only the major and minor device class bits are
12# considered.
13Class = 0x000100
14
15# How long to stay in discoverable mode before going back to non-discoverable
16# The value is in seconds. Default is 180, i.e. 3 minutes.
17# 0 = disable timer, i.e. stay discoverable forever
18DiscoverableTimeout = 120
19
20# How long to stay in pairable mode before going back to non-discoverable
21# The value is in seconds. Default is 0.
22# 0 = disable timer, i.e. stay pairable forever
23PairableTimeout = 0
24
25# Use some other page timeout than the controller default one
26# which is 16384 (10 seconds).
27PageTimeout = 8192
28
29# Discover scheduler interval used in Adapter.DiscoverDevices
30# The value is in seconds. Defaults is 30.
31DiscoverSchedulerInterval = 30
32
33# What value should be assumed for the adapter Powered property when
34# SetProperty(Powered, ...) hasn't been called yet. Defaults to true
35InitiallyPowered = true
36
37# Remember the previously stored Powered state when initializing adapters
38RememberPowered = true
39
40# Use vendor, product and version information for DID profile support.
41# The values are separated by ":" and VID, PID and version.
42DeviceID = android:generic:1.5
43
44# Do reverse service discovery for previously unknown devices that connect to
45# us. This option is really only needed for qualification since the BITE tester
46# doesn't like us doing reverse SDP for some test cases (though there could in
47# theory be other useful purposes for this too). Defaults to true.
48ReverseServiceDiscovery = true
49
50# Enable name resolving after inquiry. Set it to 'false' if you don't need
51# remote devices name and want shorter discovery cycle. Defaults to 'true'.
52NameResolving = true
53
54# Enable runtime persistency of debug link keys. Default is false which
55# makes debug link keys valid only for the duration of the connection
56# that they were created for.
57DebugKeys = false
58
59# Enable Low Energy support if the dongle supports. Default is false.
60# Enable/Disable interleave discovery and attribute server over LE.
61EnableLE = false
62
63# Enable the GATT Attribute Server. Default is false, because it is only
64# useful for testing. Attribute server is not enabled over LE if EnableLE
65# is false.
66AttributeServer = false
67
68# The link policy for connections. By default it's set to 0x000f which is
69# a bitwise OR of role switch(0x0001), hold mode(0x0002), sniff mode(0x0004)
70# and park state(0x0008) are all enabled. However, some devices have
71# connection stability issue or fail to setup SCO when the link is in park
72# state, which requires park state bit cleared.
73DefaultLinkPolicy = 0x000f
74